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

Unified Diff: mojo/runner/shell_apptest.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 | « media/video/capture/win/video_capture_device_factory_win.cc ('k') | net/base/mime_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/runner/shell_apptest.cc
diff --git a/mojo/runner/shell_apptest.cc b/mojo/runner/shell_apptest.cc
index a2bf37db4022aa3b20fc278992b4b8b47d3a78c9..a675805d434eee5692a2ed9cce30170699a5a75c 100644
--- a/mojo/runner/shell_apptest.cc
+++ b/mojo/runner/shell_apptest.cc
@@ -42,7 +42,7 @@ class GetHandler : public http_server::HttpHandler {
http_server::HttpRequestPtr request,
const Callback<void(http_server::HttpResponsePtr)>& callback) override {
http_server::HttpResponsePtr response;
- if (StartsWithASCII(request->relative_url, "/app", true)) {
+ if (base::StartsWithASCII(request->relative_url, "/app", true)) {
response = http_server::CreateHttpResponse(
200, std::string(kPingable.data, kPingable.size));
response->content_type = "application/octet-stream";
« no previous file with comments | « media/video/capture/win/video_capture_device_factory_win.cc ('k') | net/base/mime_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698