Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1275)

Unified Diff: chrome/test/base/testing_profile.h

Issue 8102019: redesign and reimplement proxy config service and tracker, revise proxy ui on cros (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/base/testing_profile.h
===================================================================
--- chrome/test/base/testing_profile.h (revision 106059)
+++ chrome/test/base/testing_profile.h (working copy)
@@ -261,7 +261,11 @@
}
#endif // defined(OS_CHROMEOS)
+#if defined(OS_CHROMEOS)
+ virtual chromeos::ProxyConfigServiceImpl* GetProxyConfigTracker();
+#else
virtual PrefProxyConfigTracker* GetProxyConfigTracker();
+#endif // defined(OS_CHROMEOS)
// Schedules a task on the history backend and runs a nested loop until the
// task is processed. This has the effect of blocking the caller until the
@@ -382,7 +386,11 @@
extension_special_storage_policy_;
// The proxy prefs tracker.
- 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)
// We use a temporary directory to store testing profile data. In a multi-
// profile environment, this is invalid and the directory is managed by the

Powered by Google App Engine
This is Rietveld 408576698