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

Unified Diff: components/invalidation/invalidation_logger_observer.h

Issue 1191393008: Introduce a layering in the invalidation component as public and impl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicitly forbid content to prevent future additions Created 5 years, 6 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
Index: components/invalidation/invalidation_logger_observer.h
diff --git a/components/invalidation/invalidation_logger_observer.h b/components/invalidation/invalidation_logger_observer.h
deleted file mode 100644
index d754b93dbfcf261be0ee851824ffb8777059b5b8..0000000000000000000000000000000000000000
--- a/components/invalidation/invalidation_logger_observer.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_INVALIDATION_INVALIDATION_LOGGER_OBSERVER_H_
-#define COMPONENTS_INVALIDATION_INVALIDATION_LOGGER_OBSERVER_H_
-
-#include "base/memory/scoped_ptr.h"
-#include "components/invalidation/invalidation_util.h"
-#include "components/invalidation/invalidator_state.h"
-#include "components/invalidation/object_id_invalidation_map.h"
-
-namespace base {
-class DictionaryValue;
-} // namespace base
-
-namespace syncer {
-class InvalidationHandler;
-class ObjectIdInvalidationMap;
-} // namespace syncer
-
-namespace invalidation {
-// This class provides the possibilty to register as an observer for the
-// InvalidationLogger notifications whenever an InvalidatorService changes
-// its internal state.
-// (i.e. A new registration, a new invalidation, a TICL/GCM state change)
-class InvalidationLoggerObserver {
- public:
- virtual void OnRegistrationChange(
- const std::multiset<std::string>& registered_handlers) = 0;
- virtual void OnStateChange(const syncer::InvalidatorState& new_state,
- const base::Time& last_change_timestamp) = 0;
- virtual void OnUpdateIds(const std::string& handler_name,
- const syncer::ObjectIdCountMap& details) = 0;
- virtual void OnDebugMessage(const base::DictionaryValue& details) = 0;
- virtual void OnInvalidation(
- const syncer::ObjectIdInvalidationMap& details) = 0;
- virtual void OnDetailedStatus(const base::DictionaryValue& details) = 0;
-
- protected:
- virtual ~InvalidationLoggerObserver() {}
-};
-
-} // namespace invalidation
-
-#endif // COMPONENTS_INVALIDATION_INVALIDATION_LOGGER_OBSERVER_H_
« no previous file with comments | « components/invalidation/invalidation_logger.cc ('k') | components/invalidation/invalidation_logger_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698