blob: e98a82cde6d25e7cef1d72fcd2321c4dc423e02e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/notifications/notification_object_proxy.h"
#include "base/guid.h"
#include "content/public/browser/desktop_notification_delegate.h"
NotificationObjectProxy::NotificationObjectProxy(
scoped_ptr<content::DesktopNotificationDelegate> delegate)
: delegate_(delegate.Pass()),
displayed_(false),
id_(base::GenerateGUID()) {}
NotificationObjectProxy::~NotificationObjectProxy() {}
void NotificationObjectProxy::Display() {
// This method is called each time the notification is shown to the user
// but we only want to fire the event the first time.
if (displayed_)
return;
displayed_ = true;
delegate_->NotificationDisplayed();
}
void NotificationObjectProxy::Close(bool by_user) {
delegate_->NotificationClosed();
}
void NotificationObjectProxy::Click() {
delegate_->NotificationClick();
}
std::string NotificationObjectProxy::id() const {
return id_;
}
|