| Index: chrome/browser/extensions/app_process_apitest.cc
|
| diff --git a/chrome/browser/extensions/app_process_apitest.cc b/chrome/browser/extensions/app_process_apitest.cc
|
| index d7fd0513bc11cf40280293f6f250552a67ec06d3..d73c77dc33b0ae8946d1728b9cc0c93a68a801e8 100644
|
| --- a/chrome/browser/extensions/app_process_apitest.cc
|
| +++ b/chrome/browser/extensions/app_process_apitest.cc
|
| @@ -29,6 +29,7 @@
|
| #include "content/public/browser/web_contents.h"
|
| #include "content/public/test/browser_test_utils.h"
|
| #include "content/public/test/test_navigation_observer.h"
|
| +#include "extensions/common/switches.h"
|
| #include "net/dns/mock_host_resolver.h"
|
| #include "net/test/embedded_test_server/embedded_test_server.h"
|
| #include "sync/api/string_ordinal.h"
|
| @@ -58,7 +59,7 @@ class AppApiTest : public ExtensionApiTest {
|
| CommandLine::ForCurrentProcess()->AppendSwitch(
|
| switches::kDisablePopupBlocking);
|
| CommandLine::ForCurrentProcess()->AppendSwitch(
|
| - switches::kAllowHTTPBackgroundPage);
|
| + extensions::switches::kAllowHTTPBackgroundPage);
|
| }
|
|
|
| // Helper function to test that independent tabs of the named app are loaded
|
| @@ -133,7 +134,7 @@ class BlockedAppApiTest : public AppApiTest {
|
| virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
|
| ExtensionApiTest::SetUpCommandLine(command_line);
|
| CommandLine::ForCurrentProcess()->AppendSwitch(
|
| - switches::kAllowHTTPBackgroundPage);
|
| + extensions::switches::kAllowHTTPBackgroundPage);
|
| }
|
| };
|
|
|
|
|