chromium/ui/message_center/notification_blocker.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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() {}

}  // namespace message_center