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

Side by Side Diff: chrome/browser/chromeos/chrome_browser_main_chromeos.h

Issue 2497123002: chromeos: Move device shutdown handling out of chrome into ash (Closed)
Patch Set: rebase Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
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 15 matching lines...) Expand all
26 class ArcKioskAppManager; 26 class ArcKioskAppManager;
27 class DataPromoNotification; 27 class DataPromoNotification;
28 class EventRewriter; 28 class EventRewriter;
29 class EventRewriterController; 29 class EventRewriterController;
30 class ExtensionVolumeObserver; 30 class ExtensionVolumeObserver;
31 class IdleActionWarningObserver; 31 class IdleActionWarningObserver;
32 class LoginLockStateNotifier; 32 class LoginLockStateNotifier;
33 class LowDiskNotification; 33 class LowDiskNotification;
34 class MagnificationManager; 34 class MagnificationManager;
35 class NetworkPrefStateObserver; 35 class NetworkPrefStateObserver;
36 class NetworkThrottlingObserver;
36 class PeripheralBatteryObserver; 37 class PeripheralBatteryObserver;
37 class PowerPrefs; 38 class PowerPrefs;
38 class RendererFreezer; 39 class RendererFreezer;
39 class SessionManagerObserver; 40 class SessionManagerObserver;
41 class ShutdownPolicyForwarder;
40 class SwapMetrics; 42 class SwapMetrics;
41 class WakeOnWifiManager; 43 class WakeOnWifiManager;
42 class NetworkThrottlingObserver;
43 44
44 namespace default_app_order { 45 namespace default_app_order {
45 class ExternalLoader; 46 class ExternalLoader;
46 } 47 }
47 48
48 namespace internal { 49 namespace internal {
49 class DBusServices; 50 class DBusServices;
50 } 51 }
51 52
52 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux { 53 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux {
(...skipping 27 matching lines...) Expand all
80 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_; 81 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_;
81 std::unique_ptr<DataPromoNotification> data_promo_notification_; 82 std::unique_ptr<DataPromoNotification> data_promo_notification_;
82 std::unique_ptr<RendererFreezer> renderer_freezer_; 83 std::unique_ptr<RendererFreezer> renderer_freezer_;
83 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_; 84 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_;
84 std::unique_ptr<NetworkThrottlingObserver> network_throttling_observer_; 85 std::unique_ptr<NetworkThrottlingObserver> network_throttling_observer_;
85 86
86 std::unique_ptr<internal::DBusServices> dbus_services_; 87 std::unique_ptr<internal::DBusServices> dbus_services_;
87 88
88 std::unique_ptr<session_manager::SessionManager> session_manager_; 89 std::unique_ptr<session_manager::SessionManager> session_manager_;
89 90
91 std::unique_ptr<ShutdownPolicyForwarder> shutdown_policy_forwarder_;
92
90 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_; 93 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_;
91 94
92 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; 95 scoped_refptr<chromeos::ExternalMetrics> external_metrics_;
93 96
94 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; 97 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_;
95 98
96 std::unique_ptr<LowDiskNotification> low_disk_notification_; 99 std::unique_ptr<LowDiskNotification> low_disk_notification_;
97 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; 100 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_;
98 101
99 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 102 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
100 }; 103 };
101 104
102 } // namespace chromeos 105 } // namespace chromeos
103 106
104 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 107 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/BUILD.gn ('k') | chrome/browser/chromeos/chrome_browser_main_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698