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

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

Issue 1282363003: Convert remaining StringToLowerASCII to ToLowerASCII (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | « google_apis/gcm/engine/gservices_settings.cc ('k') | media/base/mime_util.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 9389114f3e851981abeb6ab258dcd7a15db77396..0d871a8f175ff92bebefa82ea78f3b96c6f3a3c2 100644
--- a/ios/chrome/browser/chrome_url_util.mm
+++ b/ios/chrome/browser/chrome_url_util.mm
@@ -47,7 +47,7 @@ bool UrlHasChromeScheme(NSURL* url) {
}
bool IsHandledProtocol(const std::string& scheme) {
- DCHECK_EQ(scheme, base::StringToLowerASCII(scheme));
+ DCHECK_EQ(scheme, base::ToLowerASCII(scheme));
if (scheme == url::kAboutScheme)
return true;
if (scheme == url::kDataScheme)
« no previous file with comments | « google_apis/gcm/engine/gservices_settings.cc ('k') | media/base/mime_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698