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

Unified Diff: android_webview/browser/aw_browser_main_parts.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: 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
Index: android_webview/browser/aw_browser_main_parts.cc
diff --git a/android_webview/browser/aw_browser_main_parts.cc b/android_webview/browser/aw_browser_main_parts.cc
index c5b66fee018c30b27e0eb995a6eb32adfa8555e7..bafa5f648f47e50681117176c4388ac22bd49bda 100644
--- a/android_webview/browser/aw_browser_main_parts.cc
+++ b/android_webview/browser/aw_browser_main_parts.cc
@@ -100,7 +100,7 @@ void AwBrowserMainParts::PreMainMessageLoopRun() {
// TODO(boliu): Can't support accelerated 2d canvas and WebGL with ubercomp
// yet: crbug.com/352424.
if (!gpu::gles2::MailboxSynchronizer::Initialize()) {
- CommandLine* cl = CommandLine::ForCurrentProcess();
+ base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
cl->AppendSwitch(switches::kDisableAccelerated2dCanvas);
cl->AppendSwitch(switches::kDisableExperimentalWebGL);
}

Powered by Google App Engine
This is Rietveld 408576698