summaryrefslogtreecommitdiffstats
path: root/chrome/browser/notifications/notification_ui_manager.cc
diff options
context:
space:
mode:
authordewittj@chromium.org <dewittj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-22 14:10:41 +0000
committerdewittj@chromium.org <dewittj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-22 14:10:41 +0000
commit963b13c0951a8c1ded18d7552f28167ff2562a28 (patch)
treef66595c8f55876a76a9e7d0dbfa818fb240cc10a /chrome/browser/notifications/notification_ui_manager.cc
parent4eeb0f5fee2906baa7df8c286c89f53956973784 (diff)
downloadchromium_src-963b13c0951a8c1ded18d7552f28167ff2562a28.zip
chromium_src-963b13c0951a8c1ded18d7552f28167ff2562a28.tar.gz
chromium_src-963b13c0951a8c1ded18d7552f28167ff2562a28.tar.bz2
Adds a first-run balloon to the Windows notification center.
This is designed to attract attention to the system tray icon which can be hidden in the overflow area. BUG=246322 Review URL: https://chromiumcodereview.appspot.com/17286015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208031 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications/notification_ui_manager.cc')
-rw-r--r--chrome/browser/notifications/notification_ui_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/notifications/notification_ui_manager.cc b/chrome/browser/notifications/notification_ui_manager.cc
index 2c73a9e..8bbafe7 100644
--- a/chrome/browser/notifications/notification_ui_manager.cc
+++ b/chrome/browser/notifications/notification_ui_manager.cc
@@ -26,7 +26,7 @@ bool NotificationUIManager::DelegatesToMessageCenter() {
NotificationUIManager* NotificationUIManager::Create(PrefService* local_state) {
if (DelegatesToMessageCenter())
return new MessageCenterNotificationManager(
- g_browser_process->message_center());
+ g_browser_process->message_center(), local_state);
BalloonNotificationUIManager* balloon_manager =
new BalloonNotificationUIManager(local_state);