blob: ffa4a96550032d1a126df5baab5bc8e851564b18 [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 <set>
#include <string>
#include "base/values.h"
#include "components/invalidation/public/invalidation_util.h"
#include "components/invalidation/public/invalidator_state.h"
namespace base {
class Time;
} // 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::set<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::Value::Dict& details) = 0;
virtual void OnInvalidation(const TopicInvalidationMap& details) = 0;
virtual void OnDetailedStatus(base::Value::Dict details) = 0;
protected:
virtual ~InvalidationLoggerObserver() = default;
};
} // namespace invalidation
#endif // COMPONENTS_INVALIDATION_IMPL_INVALIDATION_LOGGER_OBSERVER_H_