| 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_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/task/cancelable_task_tracker.h" | 11 #include "base/task/cancelable_task_tracker.h" |
| 12 #include "chrome/browser/chrome_browser_main_linux.h" | 12 #include "chrome/browser/chrome_browser_main_linux.h" |
| 13 #include "chrome/browser/chromeos/external_metrics.h" | 13 #include "chrome/browser/chromeos/external_metrics.h" |
| 14 #include "chromeos/system/version_loader.h" | 14 #include "chromeos/system/version_loader.h" |
| 15 | 15 |
| 16 namespace session_manager { | 16 namespace session_manager { |
| 17 class SessionManager; | 17 class SessionManager; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace arc { | 20 namespace arc { |
| 21 class ArcServiceLauncher; | 21 class ArcServiceLauncher; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace chromeos { | 24 namespace chromeos { |
| 25 | 25 |
| 26 class ArcKioskAppManager; | 26 class ArcKioskAppManager; |
| 27 class DataPromoNotification; | 27 class DataPromoNotification; |
| 28 class EventRewriter; | |
| 29 class EventRewriterController; | 28 class EventRewriterController; |
| 30 class ExtensionVolumeObserver; | 29 class ExtensionVolumeObserver; |
| 31 class IdleActionWarningObserver; | 30 class IdleActionWarningObserver; |
| 32 class LoginLockStateNotifier; | 31 class LoginLockStateNotifier; |
| 33 class LowDiskNotification; | 32 class LowDiskNotification; |
| 34 class MagnificationManager; | |
| 35 class NetworkPrefStateObserver; | 33 class NetworkPrefStateObserver; |
| 36 class NetworkThrottlingObserver; | 34 class NetworkThrottlingObserver; |
| 37 class PeripheralBatteryObserver; | 35 class PeripheralBatteryObserver; |
| 38 class PowerPrefs; | 36 class PowerPrefs; |
| 39 class RendererFreezer; | 37 class RendererFreezer; |
| 40 class SessionManagerObserver; | |
| 41 class ShutdownPolicyForwarder; | 38 class ShutdownPolicyForwarder; |
| 42 class SwapMetrics; | |
| 43 class WakeOnWifiManager; | 39 class WakeOnWifiManager; |
| 44 | 40 |
| 45 namespace default_app_order { | 41 namespace default_app_order { |
| 46 class ExternalLoader; | 42 class ExternalLoader; |
| 47 } | 43 } |
| 48 | 44 |
| 49 namespace internal { | 45 namespace internal { |
| 50 class DBusServices; | 46 class DBusServices; |
| 51 } | 47 } |
| 52 | 48 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 94 |
| 99 std::unique_ptr<LowDiskNotification> low_disk_notification_; | 95 std::unique_ptr<LowDiskNotification> low_disk_notification_; |
| 100 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; | 96 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; |
| 101 | 97 |
| 102 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); | 98 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); |
| 103 }; | 99 }; |
| 104 | 100 |
| 105 } // namespace chromeos | 101 } // namespace chromeos |
| 106 | 102 |
| 107 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 103 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| OLD | NEW |