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

Unified Diff: android_webview/native/aw_media_url_interceptor.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 | « android_webview/native/android_protocol_handler.cc ('k') | ash/wm/lock_state_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_media_url_interceptor.cc
diff --git a/android_webview/native/aw_media_url_interceptor.cc b/android_webview/native/aw_media_url_interceptor.cc
index a2c1cddea8147dda8930b66b40264a5f5b3f9184..96d329821c5a10b66a2ca4e24ea6334bdb58db57 100644
--- a/android_webview/native/aw_media_url_interceptor.cc
+++ b/android_webview/native/aw_media_url_interceptor.cc
@@ -19,7 +19,7 @@ bool AwMediaUrlInterceptor::Intercept(const std::string& url,
std::string(url::kStandardSchemeSeparator) +
android_webview::kAndroidAssetPath);
- if (StartsWithASCII(url, asset_file_prefix, true)) {
+ if (base::StartsWithASCII(url, asset_file_prefix, true)) {
std::string filename(url);
ReplaceFirstSubstringAfterOffset(
&filename, 0, asset_file_prefix, "assets/");
« no previous file with comments | « android_webview/native/android_protocol_handler.cc ('k') | ash/wm/lock_state_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698