summaryrefslogtreecommitdiffstats
path: root/android_webview
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2014-12-22 12:54:48 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-22 20:55:44 +0000
commitf38ab65ea940c2c3bc56a1eab38d61a1802a79cd (patch)
tree30caccf8bd86c71fab184578f1c5dcbdd98aeb2d /android_webview
parent9a3381c7761c03a5aba2a7703a759dcc9b8b6d8b (diff)
downloadchromium_src-f38ab65ea940c2c3bc56a1eab38d61a1802a79cd.zip
chromium_src-f38ab65ea940c2c3bc56a1eab38d61a1802a79cd.tar.gz
chromium_src-f38ab65ea940c2c3bc56a1eab38d61a1802a79cd.tar.bz2
Make callers of CommandLine use it via the base:: namespace.
Covers android_webview/, ash/, athena/, chromeos/. BUG=422426 TEST=none TBR=ben@chromium.org Review URL: https://codereview.chromium.org/825473002 Cr-Commit-Position: refs/heads/master@{#309459}
Diffstat (limited to 'android_webview')
-rw-r--r--android_webview/lib/main/webview_tests.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/android_webview/lib/main/webview_tests.cc b/android_webview/lib/main/webview_tests.cc
index 0fe4b6b..ec849c8 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();
}