diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 20:55:45 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 20:55:45 +0000 |
commit | 4c793f0298cbafa6826ef1bc2d85d92bf64320ba (patch) | |
tree | 5e6e6a34051417ee4c6847f397713c5d56e99d0d /chrome/browser/browser_process_impl.h | |
parent | 0906270c4485c74cf35fed76aee21458702ce68c (diff) | |
download | chromium_src-4c793f0298cbafa6826ef1bc2d85d92bf64320ba.zip chromium_src-4c793f0298cbafa6826ef1bc2d85d92bf64320ba.tar.gz chromium_src-4c793f0298cbafa6826ef1bc2d85d92bf64320ba.tar.bz2 |
Added BackgroundModeManager which tracks when background apps are loaded/unloaded
and puts Chrome into BackgroundMode appropriately.
Added EXTENSION_UNINSTALLING notification which is sent out when a notification
is about to be uninstalled.
Refactored StatusTray code to move StatusTray under the profile rather than
attaching it to the browser process, and removed StatusTrayManager which is
no longer needed now that BackgroundModeManager handles creating status icons.
BUG=43382
TEST=background_mode_manager_unittests.cc
Review URL: http://codereview.chromium.org/3134011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56596 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r-- | chrome/browser/browser_process_impl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h index b26127d..9118ff6 100644 --- a/chrome/browser/browser_process_impl.h +++ b/chrome/browser/browser_process_impl.h @@ -51,7 +51,6 @@ class BrowserProcessImpl : public BrowserProcess, public NonThreadSafe { virtual DevToolsManager* devtools_manager(); virtual Clipboard* clipboard(); virtual NotificationUIManager* notification_ui_manager(); - virtual StatusTrayManager* status_tray_manager(); virtual IconManager* icon_manager(); virtual ThumbnailGenerator* GetThumbnailGenerator(); virtual AutomationProviderList* InitAutomationProviderList(); @@ -157,9 +156,6 @@ class BrowserProcessImpl : public BrowserProcess, public NonThreadSafe { bool created_notification_ui_manager_; scoped_ptr<NotificationUIManager> notification_ui_manager_; - // Manager for status tray. - scoped_ptr<StatusTrayManager> status_tray_manager_; - scoped_ptr<AutomationProviderList> automation_provider_list_; scoped_ptr<GoogleURLTracker> google_url_tracker_; |