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

Unified Diff: content/browser/service_worker/service_worker_database.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: content/browser/service_worker/service_worker_database.cc
diff --git a/content/browser/service_worker/service_worker_database.cc b/content/browser/service_worker/service_worker_database.cc
index 842080ac0bb624840707d4b0ef28cac5beb3f94f..aeac92a48a0bf78044c0b67fa1225d3b49fc5ee1 100644
--- a/content/browser/service_worker/service_worker_database.cc
+++ b/content/browser/service_worker/service_worker_database.cc
@@ -107,7 +107,7 @@ base::LazyInstance<ServiceWorkerEnv>::Leaky g_service_worker_env =
bool RemovePrefix(const std::string& str,
const std::string& prefix,
std::string* out) {
- if (!StartsWithASCII(str, prefix, true))
+ if (!base::StartsWithASCII(str, prefix, true))
return false;
if (out)
*out = str.substr(prefix.size());
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_mac.mm ('k') | content/browser/service_worker/service_worker_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698