Home | History | Annotate | Download | only in notifications

Lines Matching defs:Notification

5 #include "chrome/browser/notifications/notification.h"
7 Notification::Notification(const GURL& origin_url,
19 Notification::Notification(const Notification& notification)
20 : origin_url_(notification.origin_url()),
21 content_url_(notification.content_url()),
22 display_source_(notification.display_source()),
23 replace_id_(notification.replace_id()),
24 delegate_(notification.delegate()) {
27 Notification::~Notification() {}
29 Notification& Notification::operator=(const Notification& notification) {
30 origin_url_ = notification.origin_url();
31 content_url_ = notification.content_url();
32 display_source_ = notification.display_source();
33 replace_id_ = notification.replace_id();
34 delegate_ = notification.delegate();