| Index: chrome/browser/first_run/first_run_internal_win.cc
|
| diff --git a/chrome/browser/first_run/first_run_internal_win.cc b/chrome/browser/first_run/first_run_internal_win.cc
|
| index f66e95a23be80c34269a9007d019506870a18daf..d94e5e5a508b8976944c3d00e731129bd5b06a59 100644
|
| --- a/chrome/browser/first_run/first_run_internal_win.cc
|
| +++ b/chrome/browser/first_run/first_run_internal_win.cc
|
| @@ -47,7 +47,7 @@ bool LaunchSetupForEula(const base::FilePath::StringType& value,
|
| exe_dir = exe_dir.Append(installer::kInstallerDir);
|
| base::FilePath exe_path = exe_dir.Append(installer::kSetupExe);
|
|
|
| - CommandLine cl(CommandLine::NO_PROGRAM);
|
| + base::CommandLine cl(base::CommandLine::NO_PROGRAM);
|
| cl.AppendSwitchNative(installer::switches::kShowEula, value);
|
|
|
| if (base::win::IsMetroProcess()) {
|
| @@ -63,7 +63,7 @@ bool LaunchSetupForEula(const base::FilePath::StringType& value,
|
| SEE_MASK_FLAG_LOG_USAGE | SEE_MASK_FLAG_NO_UI);
|
| return false;
|
| } else {
|
| - CommandLine setup_path(exe_path);
|
| + base::CommandLine setup_path(exe_path);
|
| setup_path.AppendArguments(cl, false);
|
|
|
| base::Process process =
|
|
|