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

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

Issue 2724913002: Move chromeos::EventRewriter to //ui/chromeos/events (Closed)
Patch Set: Fix a typo Created 3 years, 9 months 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"
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 "chrome/browser/memory/memory_kills_monitor.h" 14 #include "chrome/browser/memory/memory_kills_monitor.h"
15 #include "chromeos/system/version_loader.h" 15 #include "chromeos/system/version_loader.h"
16 16
17 namespace session_manager { 17 namespace session_manager {
18 class SessionManager; 18 class SessionManager;
19 } 19 }
20 20
21 namespace arc { 21 namespace arc {
22 class ArcServiceLauncher; 22 class ArcServiceLauncher;
23 } 23 }
24 24
25 namespace chromeos { 25 namespace chromeos {
26 26
27 class ArcKioskAppManager; 27 class ArcKioskAppManager;
28 class DataPromoNotification; 28 class DataPromoNotification;
29 class EventRewriterController; 29 class EventRewriterController;
30 class EventRewriterDelegateImpl;
30 class ExtensionVolumeObserver; 31 class ExtensionVolumeObserver;
31 class IdleActionWarningObserver; 32 class IdleActionWarningObserver;
32 class LoginLockStateNotifier; 33 class LoginLockStateNotifier;
33 class LowDiskNotification; 34 class LowDiskNotification;
34 class NetworkPrefStateObserver; 35 class NetworkPrefStateObserver;
35 class NetworkThrottlingObserver; 36 class NetworkThrottlingObserver;
36 class PeripheralBatteryObserver; 37 class PeripheralBatteryObserver;
37 class PowerPrefs; 38 class PowerPrefs;
38 class RendererFreezer; 39 class RendererFreezer;
39 class ShutdownPolicyForwarder; 40 class ShutdownPolicyForwarder;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 std::unique_ptr<RendererFreezer> renderer_freezer_; 81 std::unique_ptr<RendererFreezer> renderer_freezer_;
81 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_; 82 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_;
82 std::unique_ptr<NetworkThrottlingObserver> network_throttling_observer_; 83 std::unique_ptr<NetworkThrottlingObserver> network_throttling_observer_;
83 84
84 std::unique_ptr<internal::DBusServices> dbus_services_; 85 std::unique_ptr<internal::DBusServices> dbus_services_;
85 86
86 std::unique_ptr<session_manager::SessionManager> session_manager_; 87 std::unique_ptr<session_manager::SessionManager> session_manager_;
87 88
88 std::unique_ptr<ShutdownPolicyForwarder> shutdown_policy_forwarder_; 89 std::unique_ptr<ShutdownPolicyForwarder> shutdown_policy_forwarder_;
89 90
91 std::unique_ptr<EventRewriterDelegateImpl> event_rewriter_delegate_;
90 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_; 92 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_;
91 93
92 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; 94 scoped_refptr<chromeos::ExternalMetrics> external_metrics_;
93 95
94 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; 96 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_;
95 97
96 std::unique_ptr<LowDiskNotification> low_disk_notification_; 98 std::unique_ptr<LowDiskNotification> low_disk_notification_;
97 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; 99 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_;
98 100
99 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_; 101 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_;
100 102
101 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 103 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
102 }; 104 };
103 105
104 } // namespace chromeos 106 } // namespace chromeos
105 107
106 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 108 #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