diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-30 03:44:03 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-30 03:44:03 +0000 |
commit | 29672abd046612aa325fcfc0e69e1cc4d91c299c (patch) | |
tree | b20163ccfd4ed8711f9d69c7b00bbce949b8acd4 /chrome/browser/browser_process.h | |
parent | 574de276b0b39820961f7cf03cf23e0389878a4a (diff) | |
download | chromium_src-29672abd046612aa325fcfc0e69e1cc4d91c299c.zip chromium_src-29672abd046612aa325fcfc0e69e1cc4d91c299c.tar.gz chromium_src-29672abd046612aa325fcfc0e69e1cc4d91c299c.tar.bz2 |
Connect the various pieces for notifications... hook up NotificationUIManager to BrowserProcess to DesktopNotificationService to RenderView.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/342043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30557 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index ff1361b..3283318 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -23,6 +23,7 @@ class DownloadRequestManager; class GoogleURLTracker; class IconManager; class MetricsService; +class NotificationUIManager; class PrefService; class ProfileManager; class DebuggerWrapper; @@ -69,6 +70,9 @@ class BrowserProcess { virtual DevToolsManager* devtools_manager() = 0; virtual Clipboard* clipboard() = 0; + // Returns the manager for desktop notifications. + virtual NotificationUIManager* notification_ui_manager() = 0; + // Returns the thread that we perform I/O coordination on (network requests, // communication with renderers, etc. // NOTE: You should ONLY use this to pass to IPC or other objects which must |