// Copyright (c) 2013 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 UI_MESSAGE_CENTER_FAKE_NOTIFIER_SETTINGS_PROVIDER_H_ #define UI_MESSAGE_CENTER_FAKE_NOTIFIER_SETTINGS_PROVIDER_H_ #include "base/memory/scoped_ptr.h" #include "ui/message_center/notifier_settings.h" namespace message_center { // A NotifierSettingsProvider that returns a configurable, fixed set of // notifiers and records which callbacks were called. For use in tests. class FakeNotifierSettingsProvider : public NotifierSettingsProvider { public: FakeNotifierSettingsProvider(); explicit FakeNotifierSettingsProvider( const std::vector& notifiers); virtual ~FakeNotifierSettingsProvider(); virtual size_t GetNotifierGroupCount() const OVERRIDE; virtual const NotifierGroup& GetNotifierGroupAt(size_t index) const OVERRIDE; virtual bool IsNotifierGroupActiveAt(size_t index) const OVERRIDE; virtual void SwitchToNotifierGroup(size_t index) OVERRIDE; virtual const NotifierGroup& GetActiveNotifierGroup() const OVERRIDE; virtual void GetNotifierList(std::vector* notifiers) OVERRIDE; virtual void SetNotifierEnabled(const Notifier& notifier, bool enabled) OVERRIDE; virtual void OnNotifierSettingsClosing() OVERRIDE; virtual bool NotifierHasAdvancedSettings(const NotifierId& notifier_id) const OVERRIDE; virtual void OnNotifierAdvancedSettingsRequested( const NotifierId& notifier_id, const std::string* notification_id) OVERRIDE; virtual void AddObserver(NotifierSettingsObserver* observer) OVERRIDE; virtual void RemoveObserver(NotifierSettingsObserver* observer) OVERRIDE; bool WasEnabled(const Notifier& notifier); int closed_called_count(); void AddGroup(NotifierGroup* group, const std::vector& notifiers); // For testing, this method can be used to specify a notifier that has a learn // more button. This class only saves the last one that was set. void SetNotifierHasAdvancedSettings(const NotifierId& notifier_id); size_t settings_requested_count() const; private: struct NotifierGroupItem { NotifierGroup* group; std::vector notifiers; NotifierGroupItem(); ~NotifierGroupItem(); }; std::map enabled_; std::vector items_; int closed_called_count_; size_t active_item_index_; scoped_ptr notifier_id_with_settings_handler_; size_t notifier_settings_requested_count_; }; } // namespace message_center #endif // UI_MESSAGE_CENTER_FAKE_NOTIFIER_SETTINGS_PROVIDER_H_