| 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" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 namespace chromeos { | 24 namespace chromeos { |
| 25 | 25 |
| 26 class DataPromoNotification; | 26 class DataPromoNotification; |
| 27 class EventRewriter; | 27 class EventRewriter; |
| 28 class EventRewriterController; | 28 class EventRewriterController; |
| 29 class ExtensionVolumeObserver; | 29 class ExtensionVolumeObserver; |
| 30 class IdleActionWarningObserver; | 30 class IdleActionWarningObserver; |
| 31 class LoginLockStateNotifier; | 31 class LoginLockStateNotifier; |
| 32 class LowDiskNotification; | 32 class LowDiskNotification; |
| 33 class MagnificationManager; | 33 class MagnificationManager; |
| 34 class NetworkPrefStateObserver; |
| 34 class PeripheralBatteryObserver; | 35 class PeripheralBatteryObserver; |
| 35 class PowerPrefs; | 36 class PowerPrefs; |
| 36 class RendererFreezer; | 37 class RendererFreezer; |
| 37 class SessionManagerObserver; | 38 class SessionManagerObserver; |
| 38 class SwapMetrics; | 39 class SwapMetrics; |
| 39 class WakeOnWifiManager; | 40 class WakeOnWifiManager; |
| 40 | 41 |
| 41 namespace default_app_order { | 42 namespace default_app_order { |
| 42 class ExternalLoader; | 43 class ExternalLoader; |
| 43 } | 44 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 62 void PreProfileInit() override; | 63 void PreProfileInit() override; |
| 63 void PostProfileInit() override; | 64 void PostProfileInit() override; |
| 64 void PreBrowserStart() override; | 65 void PreBrowserStart() override; |
| 65 void PostBrowserStart() override; | 66 void PostBrowserStart() override; |
| 66 | 67 |
| 67 void PostMainMessageLoopRun() override; | 68 void PostMainMessageLoopRun() override; |
| 68 void PostDestroyThreads() override; | 69 void PostDestroyThreads() override; |
| 69 | 70 |
| 70 private: | 71 private: |
| 71 std::unique_ptr<default_app_order::ExternalLoader> app_order_loader_; | 72 std::unique_ptr<default_app_order::ExternalLoader> app_order_loader_; |
| 73 std::unique_ptr<NetworkPrefStateObserver> network_pref_state_observer_; |
| 72 std::unique_ptr<ExtensionVolumeObserver> extension_volume_observer_; | 74 std::unique_ptr<ExtensionVolumeObserver> extension_volume_observer_; |
| 73 std::unique_ptr<PeripheralBatteryObserver> peripheral_battery_observer_; | 75 std::unique_ptr<PeripheralBatteryObserver> peripheral_battery_observer_; |
| 74 std::unique_ptr<PowerPrefs> power_prefs_; | 76 std::unique_ptr<PowerPrefs> power_prefs_; |
| 75 std::unique_ptr<LoginLockStateNotifier> login_lock_state_notifier_; | 77 std::unique_ptr<LoginLockStateNotifier> login_lock_state_notifier_; |
| 76 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_; | 78 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_; |
| 77 std::unique_ptr<DataPromoNotification> data_promo_notification_; | 79 std::unique_ptr<DataPromoNotification> data_promo_notification_; |
| 78 std::unique_ptr<RendererFreezer> renderer_freezer_; | 80 std::unique_ptr<RendererFreezer> renderer_freezer_; |
| 79 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_; | 81 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_; |
| 80 | 82 |
| 81 std::unique_ptr<internal::DBusServices> dbus_services_; | 83 std::unique_ptr<internal::DBusServices> dbus_services_; |
| 82 | 84 |
| 83 std::unique_ptr<session_manager::SessionManager> session_manager_; | 85 std::unique_ptr<session_manager::SessionManager> session_manager_; |
| 84 | 86 |
| 85 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_; | 87 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_; |
| 86 | 88 |
| 87 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; | 89 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; |
| 88 | 90 |
| 89 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; | 91 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; |
| 90 | 92 |
| 91 std::unique_ptr<LowDiskNotification> low_disk_notification_; | 93 std::unique_ptr<LowDiskNotification> low_disk_notification_; |
| 92 | 94 |
| 93 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); | 95 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); |
| 94 }; | 96 }; |
| 95 | 97 |
| 96 } // namespace chromeos | 98 } // namespace chromeos |
| 97 | 99 |
| 98 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 100 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| OLD | NEW |