Home | History | Annotate | Download | only in notifications

Lines Matching defs:Notification

5 #include "chrome/browser/notifications/notification.h"
11 Notification::Notification(const GURL& origin_url,
19 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
37 Notification::Notification(
49 : message_center::Notification(type,
65 Notification::Notification(const GURL& origin_url,
73 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
86 Notification::Notification(const Notification& notification)
87 : message_center::Notification(notification),
88 origin_url_(notification.origin_url()),
89 icon_url_(notification.icon_url()),
90 content_url_(notification.content_url()),
91 button_one_icon_url_(notification.button_one_icon_url()),
92 button_two_icon_url_(notification.button_two_icon_url()),
93 image_url_(notification.image_url()),
94 replace_id_(notification.replace_id()),
95 delegate_(notification.delegate()) {}
97 Notification::~Notification() {}
99 Notification& Notification::operator=(const Notification& notification) {
100 message_center::Notification::operator=(notification);
101 origin_url_ = notification.origin_url();
102 icon_url_ = notification.icon_url();
103 content_url_ = notification.content_url();
104 button_one_icon_url_ = notification.button_one_icon_url();
105 button_two_icon_url_ = notification.button_two_icon_url();
106 image_url_ = notification.image_url();
107 replace_id_ = notification.replace_id();
108 delegate_ = notification.delegate();