| Index: chrome/browser/android/chrome_startup_flags.cc
|
| diff --git a/chrome/browser/android/chrome_startup_flags.cc b/chrome/browser/android/chrome_startup_flags.cc
|
| index d5d200f0a370b8787d0479457af4cffe1fbafeb3..83b46648605df7cbbb93ee11082ec53c49887528 100644
|
| --- a/chrome/browser/android/chrome_startup_flags.cc
|
| +++ b/chrome/browser/android/chrome_startup_flags.cc
|
| @@ -20,14 +20,14 @@
|
| namespace {
|
|
|
| void SetCommandLineSwitch(const std::string& switch_string) {
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| if (!command_line->HasSwitch(switch_string))
|
| command_line->AppendSwitch(switch_string);
|
| }
|
|
|
| void SetCommandLineSwitchASCII(const std::string& switch_string,
|
| const std::string& value) {
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| if (!command_line->HasSwitch(switch_string))
|
| command_line->AppendSwitchASCII(switch_string, value);
|
| }
|
|
|