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

Unified Diff: sync/notifier/fake_invalidation_handler.h

Issue 11052007: Rename ModelType/ObjectIdStateMap to InvalidationMap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 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/internal_api/test/fake_sync_manager.cc ('k') | sync/notifier/fake_invalidation_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/notifier/fake_invalidation_handler.h
diff --git a/sync/notifier/fake_invalidation_handler.h b/sync/notifier/fake_invalidation_handler.h
index fd6ffb3354be4fdbd955b41a87704d5c94b0dee3..5f2b8e60bd4ede442605352b943cee9286f2c2ed 100644
--- a/sync/notifier/fake_invalidation_handler.h
+++ b/sync/notifier/fake_invalidation_handler.h
@@ -19,19 +19,19 @@ class FakeInvalidationHandler : public InvalidationHandler {
virtual ~FakeInvalidationHandler();
InvalidatorState GetInvalidatorState() const;
- const ObjectIdStateMap& GetLastInvalidationIdStateMap() const;
+ const ObjectIdInvalidationMap& GetLastInvalidationMap() const;
IncomingInvalidationSource GetLastInvalidationSource() const;
int GetInvalidationCount() const;
// InvalidationHandler implementation.
virtual void OnInvalidatorStateChange(InvalidatorState state) OVERRIDE;
virtual void OnIncomingInvalidation(
- const ObjectIdStateMap& id_state_map,
+ const ObjectIdInvalidationMap& invalidation_map,
IncomingInvalidationSource source) OVERRIDE;
private:
InvalidatorState state_;
- ObjectIdStateMap last_id_state_map_;
+ ObjectIdInvalidationMap last_invalidation_map_;
IncomingInvalidationSource last_source_;
int invalidation_count_;
« no previous file with comments | « sync/internal_api/test/fake_sync_manager.cc ('k') | sync/notifier/fake_invalidation_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698