| 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 fb1a6c934b76f0f7b42c020c6e821ea594d1808b..2ad5982a533eaf788e539b5b7e72fd06a0699e3d 100644 | 
| --- a/chrome/browser/notifications/message_center_notification_manager.cc | 
| +++ b/chrome/browser/notifications/message_center_notification_manager.cc | 
| @@ -12,11 +12,18 @@ | 
| #include "chrome/browser/profiles/profile.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() { | 
|  |