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

Unified Diff: chrome/renderer/extensions/app_bindings.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/renderer/extensions/app_bindings.cc
diff --git a/chrome/renderer/extensions/app_bindings.cc b/chrome/renderer/extensions/app_bindings.cc
index 472d93103b15681209e9c5b4ac59b3226ae65363..af65cc997d230ebfeeaec917bc918d8925686975 100644
--- a/chrome/renderer/extensions/app_bindings.cc
+++ b/chrome/renderer/extensions/app_bindings.cc
@@ -39,7 +39,7 @@ bool IsCheckoutURL(const std::string& url_spec) {
if (checkout_url_prefix.empty())
checkout_url_prefix = "https://checkout.google.com/";
- return StartsWithASCII(url_spec, checkout_url_prefix, false);
+ return base::StartsWithASCII(url_spec, checkout_url_prefix, false);
}
bool CheckAccessToAppDetails(WebFrame* frame, v8::Isolate* isolate) {
« no previous file with comments | « chrome/renderer/content_settings_observer.cc ('k') | chrome/renderer/extensions/extension_localization_peer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698