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

Unified Diff: chrome/browser/chromeos/proxy_config_service_impl.h

Issue 12079097: Introduce PrefRegistrySyncable, simplifying PrefServiceSyncable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add to PrefRegistrySyncable and PrefServiceSyncable to let sync know of pre-registered prefs. Created 7 years, 10 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/browser/chromeos/proxy_config_service_impl.h
diff --git a/chrome/browser/chromeos/proxy_config_service_impl.h b/chrome/browser/chromeos/proxy_config_service_impl.h
index 07f784836f878832c0e833ef2b2e4848f6348948..a6169dab2cabd3760d2b2b4b1d1e467df5b9a5a2 100644
--- a/chrome/browser/chromeos/proxy_config_service_impl.h
+++ b/chrome/browser/chromeos/proxy_config_service_impl.h
@@ -14,6 +14,9 @@
#include "chrome/browser/chromeos/cros/network_library.h"
#include "chrome/browser/net/pref_proxy_config_tracker_impl.h"
+class PrefRegistrySimple;
+class PrefRegistrySyncable;
+
namespace chromeos {
// Implementation of proxy config service for chromeos that:
@@ -200,7 +203,7 @@ class ProxyConfigServiceImpl
// Register UseShardProxies preference.
static void RegisterPrefs(PrefRegistrySimple* registry);
- static void RegisterUserPrefs(PrefServiceSyncable* pref_service);
+ static void RegisterUserPrefs(PrefRegistrySyncable* registry);
#if defined(UNIT_TEST)
void SetTesting(ProxyConfig* test_config) {

Powered by Google App Engine
This is Rietveld 408576698