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

Unified Diff: chrome/browser/notifications/message_center_notification_manager.cc

Issue 11819048: Implement message center on Windows (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address sky/msw comments + rebase. Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/notifications/message_center_notification_manager.cc
diff --git a/chrome/browser/notifications/message_center_notification_manager.cc b/chrome/browser/notifications/message_center_notification_manager.cc
index c6e3dccb868dbb6859f9c0ce77dcbb7348f31526..44f335258858799a3d1b920826c132bb1bc2104b 100644
--- a/chrome/browser/notifications/message_center_notification_manager.cc
+++ b/chrome/browser/notifications/message_center_notification_manager.cc
@@ -17,11 +17,18 @@
#include "chrome/browser/ui/host_desktop.h"
#include "chrome/common/extensions/extension_set.h"
#include "chrome/common/pref_names.h"
+#include "ui/message_center/message_center_tray.h"
MessageCenterNotificationManager::MessageCenterNotificationManager(
message_center::MessageCenter* message_center)
: message_center_(message_center) {
message_center_->SetDelegate(this);
+
+#if !defined(OS_CHROMEOS)
+ // On Windows, the notification manager owns the tray icon and views. Other
+ // platforms have global ownership and Create will return NULL.
+ tray_.reset(message_center::CreateMessageCenterTray());
+#endif
}
MessageCenterNotificationManager::~MessageCenterNotificationManager() {

Powered by Google App Engine
This is Rietveld 408576698