Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Unified Diff: components/autocomplete/url_prefix.cc

Issue 387313007: Remove "ftp://ftp." prefix from the URL prefix list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autocomplete/url_prefix.cc
diff --git a/components/autocomplete/url_prefix.cc b/components/autocomplete/url_prefix.cc
index ef929e55b7e5410dffdc2883872ddda2895b43e1..61b4900c94760f405ffcf459ce56fdd747fc0033 100644
--- a/components/autocomplete/url_prefix.cc
+++ b/components/autocomplete/url_prefix.cc
@@ -39,7 +39,6 @@ const URLPrefixes& URLPrefix::GetURLPrefixes() {
if (prefixes.empty()) {
prefixes.push_back(URLPrefix(base::ASCIIToUTF16("https://www."), 2));
prefixes.push_back(URLPrefix(base::ASCIIToUTF16("http://www."), 2));
- prefixes.push_back(URLPrefix(base::ASCIIToUTF16("ftp://ftp."), 2));
prefixes.push_back(URLPrefix(base::ASCIIToUTF16("ftp://www."), 2));
prefixes.push_back(URLPrefix(base::ASCIIToUTF16("https://"), 1));
prefixes.push_back(URLPrefix(base::ASCIIToUTF16("http://"), 1));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698