| Index: chrome/browser/io_thread.h
|
| diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h
|
| index c876ec7f1cdac5eb6b3d98d144c1235b62e4ac02..e73c31ff3bd13ec42f2043c0f4c2be20a223ab4b 100644
|
| --- a/chrome/browser/io_thread.h
|
| +++ b/chrome/browser/io_thread.h
|
| @@ -155,8 +155,10 @@ class IOThread : public content::BrowserThreadDelegate {
|
| // |system_cookie_store| and |system_server_bound_cert_service| are shared
|
| // between |proxy_script_fetcher_context| and |system_request_context|.
|
| scoped_refptr<net::CookieStore> system_cookie_store;
|
| +#if defined(ENABLE_EXTENSIONS)
|
| scoped_refptr<extensions::EventRouterForwarder>
|
| extension_event_router_forwarder;
|
| +#endif
|
| scoped_ptr<net::HostMappingRules> host_mapping_rules;
|
| scoped_ptr<net::HttpUserAgentSettings> http_user_agent_settings;
|
| bool ignore_certificate_errors;
|
| @@ -379,9 +381,11 @@ class IOThread : public content::BrowserThreadDelegate {
|
| // threads during shutdown, but is used most frequently on the IOThread.
|
| ChromeNetLog* net_log_;
|
|
|
| +#if defined(ENABLE_EXTENSIONS)
|
| // The extensions::EventRouterForwarder allows for sending events to
|
| // extensions from the IOThread.
|
| extensions::EventRouterForwarder* extension_event_router_forwarder_;
|
| +#endif
|
|
|
| // These member variables are basically global, but their lifetimes are tied
|
| // to the IOThread. IOThread owns them all, despite not using scoped_ptr.
|
|
|