diff --git chromium-73.0.3683.103/components/url_formatter/url_formatter.cc chromium-73.0.3683.103/components/url_formatter/url_formatter.cc index 97bc67e4b..caead697b 100644 --- chromium-73.0.3683.103/components/url_formatter/url_formatter.cc +++ chromium-73.0.3683.103/components/url_formatter/url_formatter.cc @@ -410,14 +410,14 @@ IDNConversionStatus IDNToUnicodeOneComponent(const base::char16* comp, } // namespace const FormatUrlType kFormatUrlOmitNothing = 0; -const FormatUrlType kFormatUrlOmitUsernamePassword = 1 << 0; -const FormatUrlType kFormatUrlOmitHTTP = 1 << 1; -const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname = 1 << 2; -const FormatUrlType kFormatUrlOmitHTTPS = 1 << 3; -const FormatUrlType kFormatUrlOmitTrivialSubdomains = 1 << 5; -const FormatUrlType kFormatUrlTrimAfterHost = 1 << 6; -const FormatUrlType kFormatUrlOmitFileScheme = 1 << 7; -const FormatUrlType kFormatUrlOmitMailToScheme = 1 << 8; +const FormatUrlType kFormatUrlOmitUsernamePassword = 0; +const FormatUrlType kFormatUrlOmitHTTP = 0; +const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname = 0; +const FormatUrlType kFormatUrlOmitHTTPS = 0; +const FormatUrlType kFormatUrlOmitTrivialSubdomains = 0; +const FormatUrlType kFormatUrlTrimAfterHost = 0; +const FormatUrlType kFormatUrlOmitFileScheme = 0; +const FormatUrlType kFormatUrlOmitMailToScheme = 0; const FormatUrlType kFormatUrlOmitDefaults = kFormatUrlOmitUsernamePassword | kFormatUrlOmitHTTP |