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

Unified Diff: components/url_fixer/url_fixer.cc

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
Patch Set: Created 5 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_fixer/url_fixer.cc
diff --git a/components/url_fixer/url_fixer.cc b/components/url_fixer/url_fixer.cc
index 811f1fb6720b01427269eb2084455b1c88c02b07..eaf85b0d00eccc163b8846fb9d9b932a20c12110 100644
--- a/components/url_fixer/url_fixer.cc
+++ b/components/url_fixer/url_fixer.cc
@@ -547,7 +547,7 @@ GURL url_fixer::FixupURL(const std::string& text,
// Parse and rebuild about: and chrome: URLs, except about:blank.
bool chrome_url =
- !LowerCaseEqualsASCII(trimmed, url::kAboutBlankURL) &&
+ !base::LowerCaseEqualsASCII(trimmed, url::kAboutBlankURL) &&
((scheme == url::kAboutScheme) || (scheme == kChromeUIScheme));
// For some schemes whose layouts we understand, we rebuild it.
« no previous file with comments | « components/translate/content/renderer/translate_helper.cc ('k') | components/webcrypto/test/test_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698