Index: sync/notifier/invalidation_handler.h |
diff --git a/sync/notifier/sync_notifier_observer.h b/sync/notifier/invalidation_handler.h |
similarity index 83% |
rename from sync/notifier/sync_notifier_observer.h |
rename to sync/notifier/invalidation_handler.h |
index 1dd5ea6a098b7271c409b57ad162326a98c62394..c1252ac17f879ec57858490c0b583348f076f2bf 100644 |
--- a/sync/notifier/sync_notifier_observer.h |
+++ b/sync/notifier/invalidation_handler.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef SYNC_NOTIFIER_SYNC_NOTIFIER_OBSERVER_H_ |
-#define SYNC_NOTIFIER_SYNC_NOTIFIER_OBSERVER_H_ |
+#ifndef SYNC_NOTIFIER_INVALIDATION_HANDLER_H_ |
+#define SYNC_NOTIFIER_INVALIDATION_HANDLER_H_ |
#include "sync/notifier/object_id_state_map.h" |
#include "sync/notifier/notifications_disabled_reason.h" |
@@ -17,7 +17,7 @@ enum IncomingNotificationSource { |
LOCAL_NOTIFICATION, |
}; |
-class SyncNotifierObserver { |
+class InvalidationHandler { |
public: |
// Called when notifications are enabled. |
virtual void OnNotificationsEnabled() = 0; |
@@ -34,9 +34,9 @@ class SyncNotifierObserver { |
IncomingNotificationSource source) = 0; |
protected: |
- virtual ~SyncNotifierObserver() {} |
+ virtual ~InvalidationHandler() {} |
}; |
} // namespace syncer |
-#endif // SYNC_NOTIFIER_SYNC_NOTIFIER_OBSERVER_H_ |
+#endif // SYNC_NOTIFIER_INVALIDATION_HANDLER_H_ |