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 879e62aa4cf14a07b7fb21223246a384d393bf36..1e9c291e8ac23fdf7523c43b64a6a045ecb42019 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/stringprintf.h" |
#include "base/strings/string_number_conversions.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. |