summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/startup_helper_browsertest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/startup_helper_browsertest.cc')
-rw-r--r--chrome/browser/extensions/startup_helper_browsertest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/startup_helper_browsertest.cc b/chrome/browser/extensions/startup_helper_browsertest.cc
index 81bf15e..f69701b 100644
--- a/chrome/browser/extensions/startup_helper_browsertest.cc
+++ b/chrome/browser/extensions/startup_helper_browsertest.cc
@@ -17,7 +17,7 @@ class StartupHelperBrowserTest : public InProcessBrowserTest {
StartupHelperBrowserTest() {}
~StartupHelperBrowserTest() override {}
- void SetUpCommandLine(CommandLine* command_line) override {
+ void SetUpCommandLine(base::CommandLine* command_line) override {
command_line->AppendSwitch(switches::kNoStartupWindow);
PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir_);
test_data_dir_ = test_data_dir_.AppendASCII("extensions");
@@ -43,7 +43,7 @@ IN_PROC_BROWSER_TEST_F(StartupHelperBrowserTest, ValidateCrx) {
for (std::vector<std::pair<base::FilePath, bool> >::iterator i =
expectations.begin();
i != expectations.end(); ++i) {
- CommandLine command_line(CommandLine::NO_PROGRAM);
+ base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
const base::FilePath& path = i->first;
command_line.AppendSwitchPath(switches::kValidateCrx, path);