37 lines
1.6 KiB
Diff
37 lines
1.6 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Wed, 11 Oct 2017 23:24:58 +0200
|
|
Subject: Disable omission of URL elements in Omnibox
|
|
|
|
Disable all omissions because they are used throughout the code without
|
|
a corresponding user option to individually disable their usage.
|
|
---
|
|
components/url_formatter/url_formatter.cc | 14 +++++++-------
|
|
1 file changed, 7 insertions(+), 7 deletions(-)
|
|
|
|
diff --git a/components/url_formatter/url_formatter.cc b/components/url_formatter/url_formatter.cc
|
|
--- a/components/url_formatter/url_formatter.cc
|
|
+++ b/components/url_formatter/url_formatter.cc
|
|
@@ -469,13 +469,13 @@ ComponentResult IDNToUnicodeOneComponent(
|
|
} // 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 kFormatUrlOmitUsernamePassword = 0 << 0;
|
|
+const FormatUrlType kFormatUrlOmitHTTP = 0 << 1;
|
|
+const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname = 0 << 2;
|
|
+const FormatUrlType kFormatUrlOmitHTTPS = 0 << 3;
|
|
+const FormatUrlType kFormatUrlOmitTrivialSubdomains = 0 << 5;
|
|
+const FormatUrlType kFormatUrlTrimAfterHost = 0 << 6;
|
|
+const FormatUrlType kFormatUrlOmitFileScheme = 0 << 7;
|
|
const FormatUrlType kFormatUrlOmitMailToScheme = 1 << 8;
|
|
|
|
const FormatUrlType kFormatUrlOmitDefaults =
|
|
--
|
|
2.17.1
|
|
|