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

Unified Diff: ios/chrome/browser/chrome_url_util.mm

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
« no previous file with comments | « gpu/config/gpu_test_expectations_parser.cc ('k') | media/base/audio_video_metadata_extractor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/chrome_url_util.mm
diff --git a/ios/chrome/browser/chrome_url_util.mm b/ios/chrome/browser/chrome_url_util.mm
index db685d7e92f0b10420fc5d5894930326b682a480..13477a6b63c083e400d7d5b3e5538e32da4e36c1 100644
--- a/ios/chrome/browser/chrome_url_util.mm
+++ b/ios/chrome/browser/chrome_url_util.mm
@@ -18,7 +18,7 @@
bool UrlIsExternalFileReference(const GURL& url) {
return url.SchemeIs(ios::GetChromeBrowserProvider()->GetChromeUIScheme()) &&
- LowerCaseEqualsASCII(url.host(), kChromeUIExternalFileHost);
+ base::LowerCaseEqualsASCII(url.host(), kChromeUIExternalFileHost);
}
NSURL* UrlToLaunchChrome() {
« no previous file with comments | « gpu/config/gpu_test_expectations_parser.cc ('k') | media/base/audio_video_metadata_extractor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698