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

Unified Diff: chrome/browser/ui/webui/ntp/ntp_resource_cache.cc

Issue 7775008: Enable sync for the settings from the Extension Settings API. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Reordering Created 9 years, 4 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/ui/webui/ntp/ntp_resource_cache.cc
diff --git a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc
index c163df5712419a293fdf0f42e5a6d86a3959cfd3..5e5b30085a178c1bc16f8f3ea058a98937bb507c 100644
--- a/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc
+++ b/chrome/browser/ui/webui/ntp/ntp_resource_cache.cc
@@ -485,6 +485,8 @@ string16 NTPResourceCache::GetSyncTypeMessage() {
return l10n_util::GetStringUTF16(IDS_SYNC_ADDED_SESSIONS);
} else if (unacknowledged.test(syncable::TYPED_URLS)) {
return l10n_util::GetStringUTF16(IDS_SYNC_ADDED_TYPED_URLS);
+ } else if (unacknowledged.test(syncable::EXTENSION_SETTINGS)) {
+ LOG(ERROR) << "Unacknowledged extension settings. TODO(kalman): what?";
not at google - send to devlin 2011/08/29 09:07:45 TODO(kalman) indeed. I presume something more tha
} else {
// Shouldn't be possible for any other types to be unacknowledged.
CHECK(!unacknowledged.any());

Powered by Google App Engine
This is Rietveld 408576698