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

Unified Diff: chrome/browser/printing/print_dialog_cloud.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/printing/print_dialog_cloud.cc
diff --git a/chrome/browser/printing/print_dialog_cloud.cc b/chrome/browser/printing/print_dialog_cloud.cc
index a7081939f60ff5d5a7e96ff4565a43493961a941..d2118fcb61f941906c737d5d05e35c00b79fbbc7 100644
--- a/chrome/browser/printing/print_dialog_cloud.cc
+++ b/chrome/browser/printing/print_dialog_cloud.cc
@@ -126,7 +126,7 @@ const int kDefaultHeight = 633;
bool IsSimilarUrl(const GURL& url, const GURL& cloud_print_url) {
return url.host() == cloud_print_url.host() &&
- StartsWithASCII(url.path(), cloud_print_url.path(), false) &&
+ base::StartsWithASCII(url.path(), cloud_print_url.path(), false) &&
url.scheme() == cloud_print_url.scheme();
}
« no previous file with comments | « chrome/browser/prerender/prerender_util.cc ('k') | chrome/browser/profile_resetter/automatic_profile_resetter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698