diff options
Diffstat (limited to 'chrome/test/testing_browser_process.h')
-rw-r--r-- | chrome/test/testing_browser_process.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/test/testing_browser_process.h b/chrome/test/testing_browser_process.h index b4bc3fc..bdfe555 100644 --- a/chrome/test/testing_browser_process.h +++ b/chrome/test/testing_browser_process.h @@ -78,10 +78,15 @@ class TestingBrowserProcess : public BrowserProcess { return NULL; } +#if defined(OS_WIN) virtual sandbox::BrokerServices* broker_services() { return NULL; } + virtual void InitBrokerServices(sandbox::BrokerServices*) { + } +#endif + virtual DebuggerWrapper* debugger_wrapper() { return NULL; } @@ -102,9 +107,6 @@ class TestingBrowserProcess : public BrowserProcess { return NULL; } - virtual void InitBrokerServices(sandbox::BrokerServices*) { - } - virtual AutomationProviderList* InitAutomationProviderList() { return NULL; } |