| Index: chrome/browser/profiles/profile_impl.h
|
| ===================================================================
|
| --- chrome/browser/profiles/profile_impl.h (revision 106059)
|
| +++ chrome/browser/profiles/profile_impl.h (working copy)
|
| @@ -138,7 +138,11 @@
|
| virtual void InitChromeOSPreferences() OVERRIDE;
|
| #endif // defined(OS_CHROMEOS)
|
|
|
| +#if defined(OS_CHROMEOS)
|
| + virtual chromeos::ProxyConfigServiceImpl* GetProxyConfigTracker() OVERRIDE;
|
| +#else
|
| virtual PrefProxyConfigTracker* GetProxyConfigTracker() OVERRIDE;
|
| +#endif // defined(OS_CHROMEOS)
|
|
|
| // NotificationObserver implementation.
|
| virtual void Observe(int type,
|
| @@ -283,7 +287,11 @@
|
| scoped_ptr<chromeos::LocaleChangeGuard> locale_change_guard_;
|
| #endif
|
|
|
| - 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_;
|
|
|
|
|