Index: chrome/browser/browser_process_impl.h |
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h |
index cccd98576b47e7296bd192edaf19f3a69d7e6b97..ee01e78cd32f5a5772a06b0e2c44f394cefbe12c 100644 |
--- a/chrome/browser/browser_process_impl.h |
+++ b/chrome/browser/browser_process_impl.h |
@@ -63,6 +63,11 @@ class BrowserProcessImpl : public BrowserProcess, |
virtual DevToolsManager* devtools_manager(); |
virtual SidebarManager* sidebar_manager(); |
virtual ui::Clipboard* clipboard(); |
+ virtual scoped_refptr<URLRequestContextGetter> system_request_context(); |
+#if defined(OS_CHROMEOS) |
+ virtual chromeos::ProxyConfigServiceImpl* |
+ chromeos_proxy_config_service_impl(); |
+#endif // defined(OS_CHROMEOS) |
virtual ExtensionEventRouterForwarder* extension_event_router_forwarder(); |
virtual NotificationUIManager* notification_ui_manager(); |
virtual policy::BrowserPolicyConnector* browser_policy_connector(); |
@@ -275,6 +280,11 @@ class BrowserProcessImpl : public BrowserProcess, |
void RestartPersistentInstance(); |
#endif // defined(OS_WIN) || defined(OS_LINUX) |
+#if defined(OS_CHROMEOS) |
+ scoped_refptr<chromeos::ProxyConfigServiceImpl> |
+ chromeos_proxy_config_service_impl_; |
+#endif |
+ |
DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
}; |