| Index: chrome/browser/apps/app_url_redirector_browsertest.cc
|
| diff --git a/chrome/browser/apps/app_url_redirector_browsertest.cc b/chrome/browser/apps/app_url_redirector_browsertest.cc
|
| index 4d9b24306737229d0bc3725df65ab085629daffd..43721da30d3465734db44afc611768c01d8e0ffd 100644
|
| --- a/chrome/browser/apps/app_url_redirector_browsertest.cc
|
| +++ b/chrome/browser/apps/app_url_redirector_browsertest.cc
|
| @@ -20,7 +20,7 @@ namespace extensions {
|
|
|
| class PlatformAppUrlRedirectorBrowserTest : public PlatformAppBrowserTest {
|
| public:
|
| - void SetUpCommandLine(CommandLine* command_line) override;
|
| + void SetUpCommandLine(base::CommandLine* command_line) override;
|
|
|
| protected:
|
| // Performs the following sequence:
|
| @@ -112,9 +112,8 @@ class PlatformAppUrlRedirectorBrowserTest : public PlatformAppBrowserTest {
|
| const char* handler);
|
| };
|
|
|
| -
|
| void PlatformAppUrlRedirectorBrowserTest::SetUpCommandLine(
|
| - CommandLine* command_line) {
|
| + base::CommandLine* command_line) {
|
| PlatformAppBrowserTest::SetUpCommandLine(command_line);
|
| command_line->AppendSwitch(::switches::kDisablePopupBlocking);
|
| command_line->AppendSwitchASCII(::switches::kPrerenderMode,
|
|
|