Index: chrome/browser/ui/webui/ntp/most_visited_handler.cc |
diff --git a/chrome/browser/ui/webui/ntp/most_visited_handler.cc b/chrome/browser/ui/webui/ntp/most_visited_handler.cc |
index 8b145f3c0ae62f3cce57606f66168235fcf321f4..d6063a67f76efa06406697db6c55122e570d1a02 100644 |
--- a/chrome/browser/ui/webui/ntp/most_visited_handler.cc |
+++ b/chrome/browser/ui/webui/ntp/most_visited_handler.cc |
@@ -368,8 +368,10 @@ std::string MostVisitedHandler::GetDictionaryKeyForURL(const std::string& url) { |
// static |
void MostVisitedHandler::RegisterUserPrefs(PrefService* prefs) { |
- prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedURLsBlacklist); |
- prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedPinnedURLs); |
+ prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedURLsBlacklist, |
+ PrefService::UNSYNCABLE_PREF); |
+ prefs->RegisterDictionaryPref(prefs::kNTPMostVisitedPinnedURLs, |
+ PrefService::UNSYNCABLE_PREF); |
} |
// static |