summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process_impl.cc
diff options
context:
space:
mode:
authorjohnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-06 00:30:05 +0000
committerjohnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-06 00:30:05 +0000
commitb0b2a3dd01962592fc8c1f981415ab2bdb8edefb (patch)
tree6cbda13db92837ae9aadd32a9c4aa6c87aaaf38a /chrome/browser/browser_process_impl.cc
parente5ce23e294561b52d35b72eb30c8f5ae869e0fe2 (diff)
downloadchromium_src-b0b2a3dd01962592fc8c1f981415ab2bdb8edefb.zip
chromium_src-b0b2a3dd01962592fc8c1f981415ab2bdb8edefb.tar.gz
chromium_src-b0b2a3dd01962592fc8c1f981415ab2bdb8edefb.tar.bz2
Allow the user to choose which corner of the screen should get notifications.
BUG=none TEST=create notifications, use the options menu Review URL: http://codereview.chromium.org/6006007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.cc')
-rw-r--r--chrome/browser/browser_process_impl.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 83fe028..222ee28 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -770,7 +770,8 @@ void BrowserProcessImpl::CreateIntranetRedirectDetector() {
void BrowserProcessImpl::CreateNotificationUIManager() {
DCHECK(notification_ui_manager_.get() == NULL);
- notification_ui_manager_.reset(NotificationUIManager::Create());
+ notification_ui_manager_.reset(NotificationUIManager::Create(local_state()));
+
created_notification_ui_manager_ = true;
}