summaryrefslogtreecommitdiff
path: root/www/chromium-uc/patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium-uc/patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch')
-rw-r--r--www/chromium-uc/patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/www/chromium-uc/patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch b/www/chromium-uc/patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch
deleted file mode 100644
index f9f6449..0000000
--- a/www/chromium-uc/patches/extra/ungoogled-chromium/disable-formatting-in-omnibox.patch
+++ /dev/null
@@ -1,27 +0,0 @@
1# Disables omission of URL elements in Omnibox
2
3--- components/url_formatter/url_formatter.cc.orig
4+++ components/url_formatter/url_formatter.cc
5@@ -463,14 +463,14 @@ ComponentResult IDNToUnicodeOneComponent
6 } // namespace
7
8 const FormatUrlType kFormatUrlOmitNothing = 0;
9-const FormatUrlType kFormatUrlOmitUsernamePassword = 1 << 0;
10-const FormatUrlType kFormatUrlOmitHTTP = 1 << 1;
11-const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname = 1 << 2;
12-const FormatUrlType kFormatUrlOmitHTTPS = 1 << 3;
13-const FormatUrlType kFormatUrlOmitTrivialSubdomains = 1 << 5;
14-const FormatUrlType kFormatUrlTrimAfterHost = 1 << 6;
15-const FormatUrlType kFormatUrlOmitFileScheme = 1 << 7;
16-const FormatUrlType kFormatUrlOmitMailToScheme = 1 << 8;
17+const FormatUrlType kFormatUrlOmitUsernamePassword = 0 << 0;
18+const FormatUrlType kFormatUrlOmitHTTP = 0 << 1;
19+const FormatUrlType kFormatUrlOmitTrailingSlashOnBareHostname = 0 << 2;
20+const FormatUrlType kFormatUrlOmitHTTPS = 0 << 3;
21+const FormatUrlType kFormatUrlOmitTrivialSubdomains = 0 << 5;
22+const FormatUrlType kFormatUrlTrimAfterHost = 0 << 6;
23+const FormatUrlType kFormatUrlOmitFileScheme = 0 << 7;
24+const FormatUrlType kFormatUrlOmitMailToScheme = 0 << 8;
25
26 const FormatUrlType kFormatUrlOmitDefaults =
27 kFormatUrlOmitUsernamePassword | kFormatUrlOmitHTTP |