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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// Copyright (c) 2010 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/chromeos/notifications/system_notification.h"
#include "base/move.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/notifications/system_notification_factory.h"
#include "chrome/browser/dom_ui/dom_ui_util.h"
#include "chrome/browser/notifications/notification.h"
#include "chrome/browser/notifications/notification_ui_manager.h"
namespace chromeos {
SystemNotification::SystemNotification(Profile* profile, std::string id,
int icon_resource_id, string16 title)
: profile_(profile),
collection_(static_cast<BalloonCollectionImpl*>(
g_browser_process->notification_ui_manager()->balloon_collection())),
delegate_(new Delegate(base::move(id))),
title_(move(title)),
visible_(false),
urgent_(false) {
std::string url = dom_ui_util::GetImageDataUrlFromResource(icon_resource_id);
DCHECK(!url.empty());
GURL tmp_gurl(url);
icon_.Swap(&tmp_gurl);
}
SystemNotification::~SystemNotification() {
Hide();
}
void SystemNotification::Show(const string16& message,
bool urgent,
bool sticky) {
Notification notify = SystemNotificationFactory::Create(icon_,
title_, message, delegate_.get());
if (visible_) {
// Force showing a user hidden notification on an urgent transition.
if (urgent && !urgent_) {
collection_->UpdateAndShowNotification(notify);
} else {
collection_->UpdateNotification(notify);
}
} else {
collection_->AddSystemNotification(notify, profile_,
sticky,
false /* no controls */);
}
visible_ = true;
urgent_ = urgent;
}
void SystemNotification::Hide() {
if (visible_) {
collection_->Remove(Notification(GURL(), GURL(), string16(), string16(),
delegate_.get()));
visible_ = false;
urgent_ = false;
}
}
} // namespace chromeos
|