| Index: content/browser/android/child_process_launcher_android.cc
|
| diff --git a/content/browser/android/child_process_launcher_android.cc b/content/browser/android/child_process_launcher_android.cc
|
| index baac2b0a715c792f7827faa9cd6682f3dc092015..0e42fc49e9a4ead3dbee19e91a842459c509473e 100644
|
| --- a/content/browser/android/child_process_launcher_android.cc
|
| +++ b/content/browser/android/child_process_launcher_android.cc
|
| @@ -100,7 +100,7 @@ static void OnChildProcessStarted(JNIEnv*,
|
| }
|
|
|
| void StartChildProcess(
|
| - const CommandLine::StringVector& argv,
|
| + const base::CommandLine::StringVector& argv,
|
| int child_process_id,
|
| const std::vector<content::FileDescriptorInfo>& files_to_register,
|
| const StartChildProcessCallback& callback) {
|
| @@ -211,7 +211,8 @@ void UnregisterChildProcessSurfaceTexture(int surface_texture_id,
|
| }
|
|
|
| jboolean IsSingleProcess(JNIEnv* env, jclass clazz) {
|
| - return CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess);
|
| + return base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kSingleProcess);
|
| }
|
|
|
| bool RegisterChildProcessLauncher(JNIEnv* env) {
|
|
|