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

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

Issue 2858113003: Enable device-wide EAP-TLS networks (Closed)
Patch Set: Addressed comments (and accidental rebase). Created 3 years, 7 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"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 class RendererFreezer; 42 class RendererFreezer;
43 class ShutdownPolicyForwarder; 43 class ShutdownPolicyForwarder;
44 class WakeOnWifiManager; 44 class WakeOnWifiManager;
45 45
46 namespace default_app_order { 46 namespace default_app_order {
47 class ExternalLoader; 47 class ExternalLoader;
48 } 48 }
49 49
50 namespace internal { 50 namespace internal {
51 class DBusServices; 51 class DBusServices;
52 class SystemTokenCertDBInitializer;
52 } 53 }
53 54
54 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux { 55 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux {
55 public: 56 public:
56 explicit ChromeBrowserMainPartsChromeos( 57 explicit ChromeBrowserMainPartsChromeos(
57 const content::MainFunctionParams& parameters); 58 const content::MainFunctionParams& parameters);
58 ~ChromeBrowserMainPartsChromeos() override; 59 ~ChromeBrowserMainPartsChromeos() override;
59 60
60 // ChromeBrowserMainParts overrides. 61 // ChromeBrowserMainParts overrides.
61 void PreEarlyInitialization() override; 62 void PreEarlyInitialization() override;
(...skipping 17 matching lines...) Expand all
79 std::unique_ptr<PeripheralBatteryObserver> peripheral_battery_observer_; 80 std::unique_ptr<PeripheralBatteryObserver> peripheral_battery_observer_;
80 std::unique_ptr<PowerPrefs> power_prefs_; 81 std::unique_ptr<PowerPrefs> power_prefs_;
81 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_; 82 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_;
82 std::unique_ptr<DataPromoNotification> data_promo_notification_; 83 std::unique_ptr<DataPromoNotification> data_promo_notification_;
83 std::unique_ptr<RendererFreezer> renderer_freezer_; 84 std::unique_ptr<RendererFreezer> renderer_freezer_;
84 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_; 85 std::unique_ptr<WakeOnWifiManager> wake_on_wifi_manager_;
85 std::unique_ptr<NetworkThrottlingObserver> network_throttling_observer_; 86 std::unique_ptr<NetworkThrottlingObserver> network_throttling_observer_;
86 87
87 std::unique_ptr<internal::DBusServices> dbus_services_; 88 std::unique_ptr<internal::DBusServices> dbus_services_;
88 89
90 std::unique_ptr<internal::SystemTokenCertDBInitializer>
91 system_token_certdb_initializer_;
92
89 std::unique_ptr<session_manager::SessionManager> session_manager_; 93 std::unique_ptr<session_manager::SessionManager> session_manager_;
90 94
91 std::unique_ptr<ShutdownPolicyForwarder> shutdown_policy_forwarder_; 95 std::unique_ptr<ShutdownPolicyForwarder> shutdown_policy_forwarder_;
92 96
93 std::unique_ptr<EventRewriterDelegateImpl> event_rewriter_delegate_; 97 std::unique_ptr<EventRewriterDelegateImpl> event_rewriter_delegate_;
94 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_; 98 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_;
95 99
96 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; 100 scoped_refptr<chromeos::ExternalMetrics> external_metrics_;
97 101
98 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; 102 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_;
99 103
100 std::unique_ptr<LowDiskNotification> low_disk_notification_; 104 std::unique_ptr<LowDiskNotification> low_disk_notification_;
101 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; 105 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_;
102 106
103 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_; 107 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_;
104 108
105 std::unique_ptr<lock_screen_apps::StateController> 109 std::unique_ptr<lock_screen_apps::StateController>
106 lock_screen_apps_state_controller_; 110 lock_screen_apps_state_controller_;
107 111
108 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 112 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
109 }; 113 };
110 114
111 } // namespace chromeos 115 } // namespace chromeos
112 116
113 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 117 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698