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

Unified Diff: content/public/test/browser_test_utils.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
« no previous file with comments | « content/common/plugin_list_mac.mm ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/browser_test_utils.cc
diff --git a/content/public/test/browser_test_utils.cc b/content/public/test/browser_test_utils.cc
index c7223936ce9481609d2a46a75f5d359812cbbbd1..821d975bec021a6bc2e823bb2cef5dd0cc14e851 100644
--- a/content/public/test/browser_test_utils.cc
+++ b/content/public/test/browser_test_utils.cc
@@ -231,7 +231,7 @@ scoped_ptr<net::test_server::HttpResponse> CrossSiteRedirectResponseHandler(
const GURL& server_base_url,
const net::test_server::HttpRequest& request) {
std::string prefix("/cross-site/");
- if (!StartsWithASCII(request.relative_url, prefix, true))
+ if (!base::StartsWithASCII(request.relative_url, prefix, true))
return scoped_ptr<net::test_server::HttpResponse>();
std::string params = request.relative_url.substr(prefix.length());
« no previous file with comments | « content/common/plugin_list_mac.mm ('k') | content/public/test/test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698