Index: sync/notifier/invalidation_handler.h |
diff --git a/sync/notifier/invalidation_handler.h b/sync/notifier/invalidation_handler.h |
index 057c37b20485328b6a5e1cb0397acf36f39a05f9..be85116fc57c7566ed094e7b4571148b5379848b 100644 |
--- a/sync/notifier/invalidation_handler.h |
+++ b/sync/notifier/invalidation_handler.h |
@@ -11,13 +11,6 @@ |
namespace syncer { |
-enum IncomingInvalidationSource { |
- // The server is notifying us that one or more objects have stale data. |
- REMOTE_INVALIDATION, |
- // Something locally is requesting an optimistic refresh of its data. |
- LOCAL_INVALIDATION, |
-}; |
- |
class SYNC_EXPORT InvalidationHandler { |
public: |
// Called when the invalidator state changes. |
@@ -27,8 +20,7 @@ class SYNC_EXPORT InvalidationHandler { |
// |id_state_map| and the source is in |source|. Note that this may be |
// called regardless of the current invalidator state. |
virtual void OnIncomingInvalidation( |
- const ObjectIdInvalidationMap& invalidation_map, |
- IncomingInvalidationSource source) = 0; |
+ const ObjectIdInvalidationMap& invalidation_map) = 0; |
protected: |
virtual ~InvalidationHandler() {} |