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

Unified Diff: chrome/browser/ui/webui/ntp/favicon_webui_handler.cc

Issue 1172183002: Move StartsWith[ASCII] to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util3
Patch Set: merger 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: chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
diff --git a/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc b/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
index 8f1c392c2b87f113694a6f848a7bcb68d564813c..dcb600d5ab6a3ed3095707eba2b3446dbfbde34b 100644
--- a/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
+++ b/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
@@ -84,7 +84,7 @@ void FaviconWebUIHandler::HandleGetFaviconDominantColor(
std::string path;
CHECK(args->GetString(0, &path));
std::string prefix = "chrome://favicon/size/";
- DCHECK(StartsWithASCII(path, prefix, false)) << "path is " << path;
+ DCHECK(base::StartsWithASCII(path, prefix, false)) << "path is " << path;
size_t slash = path.find("/", prefix.length());
path = path.substr(slash + 1);
« no previous file with comments | « chrome/browser/ui/webui/media_router/media_router_ui.cc ('k') | chrome/browser/web_applications/web_app_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698