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

Unified Diff: sync/tools/sync_listen_notifications.cc

Issue 10451058: sync: move invalidation version prefs out of SyncPrefs into InvalidatorStorage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 years, 7 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
« no previous file with comments | « sync/notifier/non_blocking_invalidation_notifier.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/tools/sync_listen_notifications.cc
diff --git a/sync/tools/sync_listen_notifications.cc b/sync/tools/sync_listen_notifications.cc
index 0b8f3451a3d885475c058ca4107b588f9138ce92..d8521631e33e762619f4bae6c4145ecc18e6a7d1 100644
--- a/sync/tools/sync_listen_notifications.cc
+++ b/sync/tools/sync_listen_notifications.cc
@@ -84,6 +84,14 @@ class NullInvalidationStateTracker
<< syncable::ModelTypeToString(model_type) << " to "
<< max_invalidation_version;
}
+
+ virtual std::string GetInvalidationState() const OVERRIDE {
+ return std::string();
+ }
+
+ virtual void SetInvalidationState(const std::string& state) OVERRIDE {
+ LOG(INFO) << "Setting invalidation state to: " << state;
+ }
};
const char kEmailSwitch[] = "email";
« no previous file with comments | « sync/notifier/non_blocking_invalidation_notifier.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698