Home
last modified time | relevance | path

Searched refs:FormatUrlType (Results 1 – 2 of 2) sorted by relevance

/external/chromium/net/base/
Dnet_util.h47 typedef uint32 FormatUrlType; typedef
63 extern const FormatUrlType kFormatUrlOmitNothing;
66 extern const FormatUrlType kFormatUrlOmitUsernamePassword;
69 extern const FormatUrlType kFormatUrlOmitHTTP;
73 extern const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname;
76 extern const FormatUrlType kFormatUrlOmitAll;
Dnet_util.cc1138 const FormatUrlType kFormatUrlOmitNothing = 0;
1139 const FormatUrlType kFormatUrlOmitUsernamePassword = 1 << 0;
1140 const FormatUrlType kFormatUrlOmitHTTP = 1 << 1;
1141 const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname = 1 << 2;
1142 const FormatUrlType kFormatUrlOmitAll = kFormatUrlOmitUsernamePassword |