| Index: chrome/browser/profiles/off_the_record_profile_impl.h
|
| ===================================================================
|
| --- chrome/browser/profiles/off_the_record_profile_impl.h (revision 106059)
|
| +++ chrome/browser/profiles/off_the_record_profile_impl.h (working copy)
|
| @@ -124,7 +124,12 @@
|
| virtual void OnLogin() OVERRIDE;
|
| #endif // defined(OS_CHROMEOS)
|
|
|
| +#if defined(OS_CHROMEOS)
|
| + virtual chromeos::ProxyConfigServiceImpl* GetProxyConfigTracker() OVERRIDE;
|
| +#else
|
| virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE;
|
| +#endif // defined(OS_CHROMEOS)
|
| +
|
| virtual chrome_browser_net::Predictor* GetNetworkPredictor() OVERRIDE;
|
| virtual void ClearNetworkingHistorySince(base::Time time) OVERRIDE;
|
|
|
| @@ -182,7 +187,11 @@
|
| // The file_system context for this profile.
|
| scoped_refptr<fileapi::FileSystemContext> file_system_context_;
|
|
|
| - scoped_refptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
|
| +#if defined(OS_CHROMEOS)
|
| + scoped_ptr<chromeos::ProxyConfigServiceImpl> pref_proxy_config_tracker_;
|
| +#else
|
| + scoped_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
|
| +#endif // defined(OS_CHROMEOS)
|
|
|
| scoped_ptr<ChromeURLDataManager> chrome_url_data_manager_;
|
|
|
|
|