Index: content/shell/android/browsertests_apk/content_browser_tests_android.cc |
diff --git a/content/shell/android/browsertests_apk/content_browser_tests_android.cc b/content/shell/android/browsertests_apk/content_browser_tests_android.cc |
index 9abc6367c8197440b0b8a1903de3a8e9aff7b7ab..5c77fcdf600ad4309fd48444129cc49463468501 100644 |
--- a/content/shell/android/browsertests_apk/content_browser_tests_android.cc |
+++ b/content/shell/android/browsertests_apk/content_browser_tests_android.cc |
@@ -58,7 +58,7 @@ static void RunTests(JNIEnv* env, |
jobject app_context) { |
// Command line basic initialization, will be fully initialized later. |
static const char* const kInitialArgv[] = { "ContentBrowserTestsActivity" }; |
- CommandLine::Init(arraysize(kInitialArgv), kInitialArgv); |
+ base::CommandLine::Init(arraysize(kInitialArgv), kInitialArgv); |
// Set the application context in base. |
base::android::ScopedJavaLocalRef<jobject> scoped_context( |
@@ -73,8 +73,8 @@ static void RunTests(JNIEnv* env, |
int argc = ArgsToArgv(args, &argv); |
// Fully initialize command line with arguments. |
- CommandLine* command_line = CommandLine::ForCurrentProcess(); |
- command_line->AppendArguments(CommandLine(argc, &argv[0]), false); |
+ base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); |
+ command_line->AppendArguments(base::CommandLine(argc, &argv[0]), false); |
// Append required switches. |
command_line->AppendSwitch(content::kSingleProcessTestsFlag); |