Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Unified Diff: chrome/browser/background_mode_manager.h

Issue 5368002: Move Mac LaunchOnStartup enable/disable to File thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Eliminating excess header includes: Windows Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/background_mode_manager.cc » ('j') | chrome/browser/background_mode_manager.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/background_mode_manager.h
diff --git a/chrome/browser/background_mode_manager.h b/chrome/browser/background_mode_manager.h
index 6da40ece9317ce24b0482c82d0a2303bb2a95ad3..f0870219d3dbb5dff06ad22b503a6f9379d79491 100644
--- a/chrome/browser/background_mode_manager.h
+++ b/chrome/browser/background_mode_manager.h
@@ -8,6 +8,7 @@
#include "app/menus/simple_menu_model.h"
#include "base/gtest_prod_util.h"
+#include "base/task.h"
#include "chrome/browser/background_application_list_model.h"
#include "chrome/browser/prefs/pref_change_registrar.h"
#include "chrome/browser/status_icons/status_icon.h"
@@ -49,6 +50,26 @@ class BackgroundModeManager
static bool IsBackgroundModeEnabled(const CommandLine* command_line);
private:
+ class DisableLaunchOnStartupTask : public Task {
+ public:
+ explicit DisableLaunchOnStartupTask(BackgroundModeManager* manager)
+ : manager_(manager) {
Andrew T Wilson (Slow) 2010/12/03 02:06:59 I'm really nervous about passing the BackgroundMod
The wrong rickcam account 2010/12/04 02:08:04 Done. I've pushed the EnableLaunchOnStartup defin
+ }
+ virtual void Run();
+ private:
+ BackgroundModeManager* manager_;
+ };
+
+ class EnableLaunchOnStartupTask : public Task {
+ public:
+ explicit EnableLaunchOnStartupTask(BackgroundModeManager* manager)
+ : manager_(manager) {
+ }
+ virtual void Run();
+ private:
+ BackgroundModeManager* manager_;
+ };
+
friend class TestBackgroundModeManager;
friend class BackgroundModeManagerTest;
FRIEND_TEST_ALL_PREFIXES(BackgroundModeManagerTest,
@@ -119,6 +140,10 @@ class BackgroundModeManager
// manually, or all apps have been loaded).
void EndKeepAliveForStartup();
+ // Add a Preferences (or Options, or Settings) entry to the Status Icon's
+ // context menu.
+ void AddPreferencesItem(menus::SimpleMenuModel* menu);
+
// Create a status tray icon to allow the user to shutdown Chrome when running
// in background mode. Virtual to enable testing.
virtual void CreateStatusTrayIcon();
« no previous file with comments | « no previous file | chrome/browser/background_mode_manager.cc » ('j') | chrome/browser/background_mode_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698