Chromium Code Reviews| Index: chrome/browser/io_thread.h |
| diff --git a/chrome/browser/io_thread.h b/chrome/browser/io_thread.h |
| index 0f1eab35f76bd6d4ab95ef2c9c94253c906a6bcc..c410fc65da1ec1dee5dfbe21cd7518a4c332cf6b 100644 |
| --- a/chrome/browser/io_thread.h |
| +++ b/chrome/browser/io_thread.h |
| @@ -23,7 +23,7 @@ |
| class ChromeNetLog; |
| class CommandLine; |
| class PrefProxyConfigTrackerImpl; |
| -class PrefService; |
| +class PrefServiceSimple; |
| class SystemURLRequestContextGetter; |
| namespace chrome_browser_net { |
| @@ -166,7 +166,7 @@ class IOThread : public content::BrowserThreadDelegate { |
| }; |
| // |net_log| must either outlive the IOThread or be NULL. |
| - IOThread(PrefService* local_state, |
| + IOThread(PrefServiceSimple* local_state, |
|
Mattias Nissler (ping if slow)
2012/12/20 13:41:52
Can we pass PrefServiceBase* here?
Jói
2012/12/20 16:30:31
Unfortunately, not right now, because the construc
|
| policy::PolicyService* policy_service, |
| ChromeNetLog* net_log, |
| extensions::EventRouterForwarder* extension_event_router_forwarder); |
| @@ -231,7 +231,7 @@ class IOThread : public content::BrowserThreadDelegate { |
| // SystemRequestContext state has been initialized on the UI thread. |
| void InitSystemRequestContextOnIOThread(); |
| - static void RegisterPrefs(PrefService* local_state); |
| + static void RegisterPrefs(PrefServiceSimple* local_state); |
| net::HttpAuthHandlerFactory* CreateDefaultAuthHandlerFactory( |
| net::HostResolver* resolver); |