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

Unified Diff: android_webview/lib/main/webview_tests.cc

Issue 825473002: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « no previous file | ash/virtual_keyboard_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/lib/main/webview_tests.cc
diff --git a/android_webview/lib/main/webview_tests.cc b/android_webview/lib/main/webview_tests.cc
index 0fe4b6b262dc090a9a9bb3a567d1026b3f6b3e63..ec849c8024e0ef0f9e23763abbe8a204d79938af 100644
--- a/android_webview/lib/main/webview_tests.cc
+++ b/android_webview/lib/main/webview_tests.cc
@@ -11,7 +11,8 @@
int main(int argc, char** argv) {
android_webview::RegisterJni(base::android::AttachCurrentThread());
- CommandLine::ForCurrentProcess()->AppendSwitch(switches::kSingleProcess);
+ base::CommandLine::ForCurrentProcess()->AppendSwitch(
+ switches::kSingleProcess);
gfx::GLSurface::InitializeOneOffForTests();
return base::TestSuite(argc, argv).Run();
}
« no previous file with comments | « no previous file | ash/virtual_keyboard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698