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

Unified Diff: sync/notifier/invalidation_state_tracker.h

Issue 10407014: Rename InvalidationVersionTracker to InvalidationStateTracker in preparation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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/invalidation_notifier_unittest.cc ('k') | sync/notifier/invalidation_version_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/notifier/invalidation_state_tracker.h
===================================================================
--- sync/notifier/invalidation_state_tracker.h (revision 137282)
+++ sync/notifier/invalidation_state_tracker.h (working copy)
@@ -5,8 +5,8 @@
// An InvalidationVersionTracker is an interface that handles getting
// and setting (persisting) max invalidation versions.
-#ifndef SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_
-#define SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_
+#ifndef SYNC_NOTIFIER_INVALIDATION_STATE_TRACKER_H_
+#define SYNC_NOTIFIER_INVALIDATION_STATE_TRACKER_H_
#include <map>
@@ -17,9 +17,9 @@
typedef std::map<syncable::ModelType, int64> InvalidationVersionMap;
-class InvalidationVersionTracker {
+class InvalidationStateTracker {
public:
- InvalidationVersionTracker() {}
+ InvalidationStateTracker() {}
virtual InvalidationVersionMap GetAllMaxVersions() const = 0;
@@ -29,10 +29,9 @@
int64 max_version) = 0;
protected:
- virtual ~InvalidationVersionTracker() {}
+ virtual ~InvalidationStateTracker() {}
};
} // namespace sync_notifier
-#endif // SYNC_NOTIFIER_INVALIDATION_VERSION_TRACKER_H_
-
+#endif // SYNC_NOTIFIER_INVALIDATION_STATE_TRACKER_H_
« no previous file with comments | « sync/notifier/invalidation_notifier_unittest.cc ('k') | sync/notifier/invalidation_version_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698