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

Unified Diff: android_webview/common/aw_switches.cc

Issue 661443003: Prefix CommandLine usege with base namespace (Part 2: android_webview/) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 2 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/common/aw_content_client.cc ('k') | android_webview/lib/main/aw_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/common/aw_switches.cc
diff --git a/android_webview/common/aw_switches.cc b/android_webview/common/aw_switches.cc
index 41ec9bd68670352517fed450183ea94dcce1d06a..8a36bb59d7d0665826ee49371026ad7c5ef9e3e9 100644
--- a/android_webview/common/aw_switches.cc
+++ b/android_webview/common/aw_switches.cc
@@ -11,7 +11,7 @@ const char kForceAuxiliaryBitmap[] = "force-auxiliary-bitmap";
bool ForceAuxiliaryBitmap() {
static bool force_auxiliary_bitmap =
- CommandLine::ForCurrentProcess()->HasSwitch(kForceAuxiliaryBitmap);
+ base::CommandLine::ForCurrentProcess()->HasSwitch(kForceAuxiliaryBitmap);
return force_auxiliary_bitmap;
}
« no previous file with comments | « android_webview/common/aw_content_client.cc ('k') | android_webview/lib/main/aw_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698