1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/message_center/notification_delegate.h"
7 namespace message_center
{
9 // NotificationDelegate:
11 void NotificationDelegate::Display() {}
13 void NotificationDelegate::Close(bool by_user
) {}
15 bool NotificationDelegate::HasClickedListener() { return false; }
17 void NotificationDelegate::Click() {}
19 void NotificationDelegate::ButtonClick(int button_index
) {}
21 // HandleNotificationClickedDelegate:
23 HandleNotificationClickedDelegate::HandleNotificationClickedDelegate(
24 const base::Closure
& closure
)
28 HandleNotificationClickedDelegate::~HandleNotificationClickedDelegate() {}
30 bool HandleNotificationClickedDelegate::HasClickedListener() {
31 return !closure_
.is_null();
34 void HandleNotificationClickedDelegate::Click() {
35 if (!closure_
.is_null())
39 // HandleNotificationButtonClickDelegate:
41 HandleNotificationButtonClickDelegate::HandleNotificationButtonClickDelegate(
42 const ButtonClickCallback
& button_callback
)
43 : button_callback_(button_callback
) {
46 HandleNotificationButtonClickDelegate::
47 ~HandleNotificationButtonClickDelegate() {}
49 void HandleNotificationButtonClickDelegate::ButtonClick(int button_index
) {
50 if (!button_callback_
.is_null())
51 button_callback_
.Run(button_index
);
54 } // namespace message_center