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

Unified Diff: components/url_formatter/url_formatter.cc

Issue 2963883002: Omnibox UI Experiments: Refactor HTTPS trimming into UrlFormatter. (Closed)
Patch Set: Created 3 years, 6 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
Index: components/url_formatter/url_formatter.cc
diff --git a/components/url_formatter/url_formatter.cc b/components/url_formatter/url_formatter.cc
index 154cbf7062f88256e6dbb1cb80f238ad816386bf..7cdad7433f72f3be806ccd9142f2d0620e0d3974 100644
--- a/components/url_formatter/url_formatter.cc
+++ b/components/url_formatter/url_formatter.cc
@@ -361,6 +361,7 @@ const FormatUrlType kFormatUrlOmitAll =
kFormatUrlOmitUsernamePassword | kFormatUrlOmitHTTP |
kFormatUrlOmitTrailingSlashOnBareHostname;
const FormatUrlType kFormatUrlExperimentalElideAfterHost = 1 << 3;
+const FormatUrlType kFormatUrlExperimentalOmitHTTPS = 1 << 4;
base::string16 FormatUrl(const GURL& url,
FormatUrlTypes format_types,
@@ -436,18 +437,6 @@ base::string16 FormatUrlWithAdjustments(
url_string.insert(
url_string.end(), spec.begin(),
spec.begin() + parsed.CountCharactersBefore(url::Parsed::USERNAME, true));
- const char kHTTP[] = "http://";
- const char kFTP[] = "ftp.";
- // url_formatter::FixupURL() treats "ftp.foo.com" as ftp://ftp.foo.com. This
- // means that if we trim "http://" off a URL whose host starts with "ftp." and
- // the user inputs this into any field subject to fixup (which is basically
- // all input fields), the meaning would be changed. (In fact, often the
- // formatted URL is directly pre-filled into an input field.) For this reason
- // we avoid stripping "http://" in this case.
- bool omit_http =
- (format_types & kFormatUrlOmitHTTP) &&
- base::EqualsASCII(url_string, kHTTP) &&
- !base::StartsWith(url.host(), kFTP, base::CompareCase::SENSITIVE);
new_parsed->scheme = parsed.scheme;
// Username & password.
@@ -558,20 +547,34 @@ base::string16 FormatUrlWithAdjustments(
&url_string, &new_parsed->ref, adjustments);
}
- // If we need to strip out http do it after the fact.
- if (omit_http && base::StartsWith(url_string, base::ASCIIToUTF16(kHTTP),
- base::CompareCase::SENSITIVE)) {
- const size_t kHTTPSize = arraysize(kHTTP) - 1;
- url_string = url_string.substr(kHTTPSize);
+ // url_formatter::FixupURL() treats "ftp.foo.com" as ftp://ftp.foo.com. This
+ // means that if we trim "http://" off a URL whose host starts with "ftp." and
Peter Kasting 2017/06/28 23:09:59 Nit: "http://" -> the scheme
tommycli 2017/06/29 00:19:43 Done.
+ // the user inputs this into any field subject to fixup (which is basically
+ // all input fields), the meaning would be changed. (In fact, often the
+ // formatted URL is directly pre-filled into an input field.) For this reason
+ // we avoid stripping schemes in this case.
+ const char kFTP[] = "ftp.";
+ bool strip_scheme =
+ !base::StartsWith(url.host(), kFTP, base::CompareCase::SENSITIVE) &&
+ (((format_types & kFormatUrlOmitHTTP) &&
+ url.SchemeIs(url::kHttpScheme)) ||
+ ((format_types & kFormatUrlExperimentalOmitHTTPS) &&
+ url.SchemeIs(url::kHttpsScheme)));
+
+ // If we need to strip out schemes do it after the fact.
+ if (strip_scheme) {
+ const size_t scheme_size =
+ parsed.scheme.len + strlen(url::kStandardSchemeSeparator);
+ url_string = url_string.substr(scheme_size);
Peter Kasting 2017/06/28 23:09:59 I noticed we need to compute the scheme size above
tommycli 2017/06/29 00:19:43 Done.
// Because offsets in the |adjustments| are already calculated with respect
// to the string with the http:// prefix in it, those offsets remain correct
// after stripping the prefix. The only thing necessary is to add an
// adjustment to reflect the stripped prefix.
adjustments->insert(adjustments->begin(),
- base::OffsetAdjuster::Adjustment(0, kHTTPSize, 0));
+ base::OffsetAdjuster::Adjustment(0, scheme_size, 0));
if (prefix_end)
- *prefix_end -= kHTTPSize;
+ *prefix_end -= scheme_size;
// Adjust new_parsed.
DCHECK(new_parsed->scheme.is_valid());

Powered by Google App Engine
This is Rietveld 408576698