| OLD | NEW | 
|    1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |    1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
|    2 // Use of this source code is governed by a BSD-style license that can be |    2 // Use of this source code is governed by a BSD-style license that can be | 
|    3 // found in the LICENSE file. |    3 // found in the LICENSE file. | 
|    4  |    4  | 
|    5 #ifndef CHROME_BROWSER_BACKGROUND_BACKGROUND_MODE_MANAGER_H_ |    5 #ifndef CHROME_BROWSER_BACKGROUND_BACKGROUND_MODE_MANAGER_H_ | 
|    6 #define CHROME_BROWSER_BACKGROUND_BACKGROUND_MODE_MANAGER_H_ |    6 #define CHROME_BROWSER_BACKGROUND_BACKGROUND_MODE_MANAGER_H_ | 
|    7  |    7  | 
|    8 #include <map> |    8 #include <map> | 
|    9  |    9  | 
|   10 #include "base/gtest_prod_util.h" |   10 #include "base/gtest_prod_util.h" | 
 |   11 #include "chrome/browser/api/prefs/pref_change_registrar.h" | 
|   11 #include "chrome/browser/background/background_application_list_model.h" |   12 #include "chrome/browser/background/background_application_list_model.h" | 
|   12 #include "chrome/browser/prefs/pref_change_registrar.h" |  | 
|   13 #include "chrome/browser/profiles/profile_info_cache_observer.h" |   13 #include "chrome/browser/profiles/profile_info_cache_observer.h" | 
|   14 #include "chrome/browser/profiles/profile_keyed_service.h" |   14 #include "chrome/browser/profiles/profile_keyed_service.h" | 
|   15 #include "chrome/browser/status_icons/status_icon.h" |   15 #include "chrome/browser/status_icons/status_icon.h" | 
|   16 #include "content/public/browser/notification_observer.h" |   16 #include "content/public/browser/notification_observer.h" | 
|   17 #include "content/public/browser/notification_registrar.h" |   17 #include "content/public/browser/notification_registrar.h" | 
|   18 #include "ui/base/models/simple_menu_model.h" |   18 #include "ui/base/models/simple_menu_model.h" | 
|   19  |   19  | 
|   20 class Browser; |   20 class Browser; | 
|   21 class CommandLine; |   21 class CommandLine; | 
|   22 class PrefService; |   22 class PrefService; | 
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  303   // app). |  303   // app). | 
|  304   bool keep_alive_for_test_; |  304   bool keep_alive_for_test_; | 
|  305  |  305  | 
|  306   // Provides a command id for each profile as they are created. |  306   // Provides a command id for each profile as they are created. | 
|  307   int current_command_id_; |  307   int current_command_id_; | 
|  308  |  308  | 
|  309   DISALLOW_COPY_AND_ASSIGN(BackgroundModeManager); |  309   DISALLOW_COPY_AND_ASSIGN(BackgroundModeManager); | 
|  310 }; |  310 }; | 
|  311  |  311  | 
|  312 #endif  // CHROME_BROWSER_BACKGROUND_BACKGROUND_MODE_MANAGER_H_ |  312 #endif  // CHROME_BROWSER_BACKGROUND_BACKGROUND_MODE_MANAGER_H_ | 
| OLD | NEW |