summaryrefslogtreecommitdiff
path: root/apps/load_and_launch_browsertest.cc
diff options
context:
space:
mode:
authorTorne (Richard Coles) <torne@google.com>2014-11-06 11:12:11 +0000
committerTorne (Richard Coles) <torne@google.com>2014-11-06 11:12:11 +0000
commit31cddfd4ec55fcfc2129f5fbb6b805caa05239e6 (patch)
tree1e6dd5fa7e5815f4eb3fdcfa62fe9e0b9cab5d62 /apps/load_and_launch_browsertest.cc
parentd89a76b554c21870a46be512d079b41cf4aa1a6c (diff)
downloadchromium_org-31cddfd4ec55fcfc2129f5fbb6b805caa05239e6.tar.gz
Merge from Chromium at DEPS revision db3f05efe0f9
This commit was generated by merge_to_master.py. Change-Id: Ia8ad0e588aab2864147fdf2270c1da6ed65a52f9
Diffstat (limited to 'apps/load_and_launch_browsertest.cc')
-rw-r--r--apps/load_and_launch_browsertest.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/load_and_launch_browsertest.cc b/apps/load_and_launch_browsertest.cc
index f3573b8122..92e95763b5 100644
--- a/apps/load_and_launch_browsertest.cc
+++ b/apps/load_and_launch_browsertest.cc
@@ -34,8 +34,8 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest,
MAYBE_LoadAndLaunchAppChromeRunning) {
ExtensionTestMessageListener launched_listener("Launched", false);
- const CommandLine& cmdline = *CommandLine::ForCurrentProcess();
- CommandLine new_cmdline(cmdline.GetProgram());
+ const base::CommandLine& cmdline = *base::CommandLine::ForCurrentProcess();
+ base::CommandLine new_cmdline(cmdline.GetProgram());
const char* kSwitchNames[] = {
switches::kUserDataDir,
@@ -71,8 +71,8 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest,
MAYBE_LoadAndLaunchAppWithFile) {
ExtensionTestMessageListener launched_listener("Launched", false);
- const CommandLine& cmdline = *CommandLine::ForCurrentProcess();
- CommandLine new_cmdline(cmdline.GetProgram());
+ const base::CommandLine& cmdline = *base::CommandLine::ForCurrentProcess();
+ base::CommandLine new_cmdline(cmdline.GetProgram());
const char* kSwitchNames[] = {
switches::kUserDataDir,
@@ -109,7 +109,7 @@ class PlatformAppLoadAndLaunchBrowserTest : public PlatformAppBrowserTest {
protected:
PlatformAppLoadAndLaunchBrowserTest() {}
- void SetUpCommandLine(CommandLine* command_line) override {
+ void SetUpCommandLine(base::CommandLine* command_line) override {
PlatformAppBrowserTest::SetUpCommandLine(command_line);
app_path_ = test_data_dir_
.AppendASCII("platform_apps")