Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: chrome/browser/notifications/notification_ui_manager.cc

Issue 14767029: Add API function chrome.notifications.getAll (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: IWYU + dimich nit. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/notifications/notification_ui_manager.h" 5 #include "chrome/browser/notifications/notification_ui_manager.h"
6 6
7 #include "chrome/browser/browser_process.h" 7 #include "chrome/browser/browser_process.h"
8 #include "chrome/browser/notifications/balloon_notification_ui_manager.h" 8 #include "chrome/browser/notifications/balloon_notification_ui_manager.h"
9 #include "chrome/browser/notifications/message_center_notification_manager.h" 9 #include "chrome/browser/notifications/message_center_notification_manager.h"
10 #include "chrome/browser/profiles/profile.h"
10 #include "ui/message_center/message_center_util.h" 11 #include "ui/message_center/message_center_util.h"
11 12
12 // static 13 // static
13 bool NotificationUIManager::DelegatesToMessageCenter() { 14 bool NotificationUIManager::DelegatesToMessageCenter() {
14 // In ChromeOS, it always uses MessageCenterNotificationManager. The flag of 15 // In ChromeOS, it always uses MessageCenterNotificationManager. The flag of
15 // --enable-rich-notifications switches the contents and behaviors inside of 16 // --enable-rich-notifications switches the contents and behaviors inside of
16 // the message center. 17 // the message center.
17 #if defined(OS_CHROMEOS) 18 #if defined(OS_CHROMEOS)
18 return true; 19 return true;
19 #endif 20 #endif
20 return message_center::IsRichNotificationEnabled(); 21 return message_center::IsRichNotificationEnabled();
21 } 22 }
22 23
23 #if !defined(OS_MACOSX) 24 #if !defined(OS_MACOSX)
24 // static 25 // static
25 NotificationUIManager* NotificationUIManager::Create(PrefService* local_state) { 26 NotificationUIManager* NotificationUIManager::Create(PrefService* local_state) {
26 if (DelegatesToMessageCenter()) 27 if (DelegatesToMessageCenter())
27 return new MessageCenterNotificationManager( 28 return new MessageCenterNotificationManager(
28 g_browser_process->message_center()); 29 g_browser_process->message_center());
29 30
30 BalloonNotificationUIManager* balloon_manager = 31 BalloonNotificationUIManager* balloon_manager =
31 new BalloonNotificationUIManager(local_state); 32 new BalloonNotificationUIManager(local_state);
32 balloon_manager->SetBalloonCollection(BalloonCollection::Create()); 33 balloon_manager->SetBalloonCollection(BalloonCollection::Create());
33 return balloon_manager; 34 return balloon_manager;
34 } 35 }
35 #endif 36 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698