Index: chrome/browser/net/http_server_properties_manager.cc |
diff --git a/chrome/browser/net/http_server_properties_manager.cc b/chrome/browser/net/http_server_properties_manager.cc |
index 87b4d93774616b0dd5663e6bc141edbf2845885d..4af87d5ecd06a7ad8a72bdf8c3b8a9fceed3c0ba 100644 |
--- a/chrome/browser/net/http_server_properties_manager.cc |
+++ b/chrome/browser/net/http_server_properties_manager.cc |
@@ -8,6 +8,7 @@ |
#include "base/string_number_conversions.h" |
#include "base/stringprintf.h" |
#include "base/values.h" |
+#include "chrome/browser/prefs/pref_registry_syncable.h" |
#include "chrome/browser/prefs/pref_service.h" |
#include "chrome/common/chrome_notification_types.h" |
#include "chrome/common/pref_names.h" |
@@ -90,9 +91,9 @@ void HttpServerPropertiesManager::ShutdownOnUIThread() { |
// static |
void HttpServerPropertiesManager::RegisterUserPrefs( |
- PrefServiceSyncable* prefs) { |
+ PrefRegistrySyncable* prefs) { |
prefs->RegisterDictionaryPref(prefs::kHttpServerProperties, |
- PrefServiceSyncable::UNSYNCABLE_PREF); |
+ PrefRegistrySyncable::UNSYNCABLE_PREF); |
} |
// This is required for conformance with the HttpServerProperties interface. |