blob: 4b6d0a95ea0c8ada732fc7905dcf9c9a4dede38f [file] [log] [blame]
// 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_IMPL_INVALIDATION_LOGGER_OBSERVER_H_
#define COMPONENTS_INVALIDATION_IMPL_INVALIDATION_LOGGER_OBSERVER_H_
#include "components/invalidation/public/invalidation_util.h"
#include "components/invalidation/public/invalidator_state.h"
namespace base {
class DictionaryValue;
} // namespace base
namespace invalidation {
class TopicInvalidationMap;
// This class provides the possibility to register as an observer for the
// InvalidationLogger notifications whenever an InvalidationService changes
// its internal state.
// (i.e. A new registration, a new invalidation, a GCM state change)
class InvalidationLoggerObserver {
public:
virtual void OnRegistrationChange(
const std::multiset<std::string>& registered_handlers) = 0;
virtual void OnStateChange(const InvalidatorState& new_state,
const base::Time& last_change_timestamp) = 0;
virtual void OnUpdatedTopics(const std::string& handler_name,
const TopicCountMap& details) = 0;
virtual void OnDebugMessage(const base::DictionaryValue& details) = 0;
virtual void OnInvalidation(const TopicInvalidationMap& details) = 0;
virtual void OnDetailedStatus(const base::DictionaryValue& details) = 0;
protected:
virtual ~InvalidationLoggerObserver() = default;
};
} // namespace invalidation
#endif // COMPONENTS_INVALIDATION_IMPL_INVALIDATION_LOGGER_OBSERVER_H_