| Index: chrome/browser/extensions/api/system_indicator/system_indicator_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/system_indicator/system_indicator_apitest.cc b/chrome/browser/extensions/api/system_indicator/system_indicator_apitest.cc
|
| index 5b923cab8f53191ed918f67427efdb73e60ed568..4268a391ae1128f81793e165f69e09f2fba47508 100644
|
| --- a/chrome/browser/extensions/api/system_indicator/system_indicator_apitest.cc
|
| +++ b/chrome/browser/extensions/api/system_indicator/system_indicator_apitest.cc
|
| @@ -11,8 +11,8 @@
|
| #include "chrome/browser/extensions/extension_system.h"
|
| #include "chrome/browser/extensions/lazy_background_page_test_util.h"
|
| #include "chrome/browser/ui/browser.h"
|
| -#include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/extensions/extension.h"
|
| +#include "extensions/common/switches.h"
|
|
|
| class SystemIndicatorApiTest : public ExtensionApiTest {
|
| public:
|
| @@ -20,8 +20,10 @@ class SystemIndicatorApiTest : public ExtensionApiTest {
|
| ExtensionApiTest::SetUpCommandLine(command_line);
|
| // Set shorter delays to prevent test timeouts in tests that need to wait
|
| // for the event page to unload.
|
| - command_line->AppendSwitchASCII(switches::kEventPageIdleTime, "1");
|
| - command_line->AppendSwitchASCII(switches::kEventPageSuspendingTime, "1");
|
| + command_line->AppendSwitchASCII(
|
| + extensions::switches::kEventPageIdleTime, "1");
|
| + command_line->AppendSwitchASCII(
|
| + extensions::switches::kEventPageSuspendingTime, "1");
|
| }
|
|
|
| const extensions::Extension* LoadExtensionAndWait(
|
|
|