#include "ui/message_center/notification_blocker.h"
#include "base/observer_list.h"
#include "ui/message_center/message_center.h"
namespace message_center {
NotificationBlocker::NotificationBlocker(MessageCenter* message_center)
: … { … }
NotificationBlocker::~NotificationBlocker() { … }
void NotificationBlocker::Init() { … }
void NotificationBlocker::AddObserver(NotificationBlocker::Observer* observer) { … }
void NotificationBlocker::RemoveObserver(
NotificationBlocker::Observer* observer) { … }
bool NotificationBlocker::ShouldShowNotification(
const Notification& notification) const { … }
void NotificationBlocker::NotifyBlockingStateChanged() { … }
}