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

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

Issue 2466693002: [Re-land] Add network throttling as enterprise policy (Closed)
Patch Set: [Re-land] Add network throttling as enterprise policy 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 20 matching lines...) Expand all
31 class LoginLockStateNotifier; 31 class LoginLockStateNotifier;
32 class LowDiskNotification; 32 class LowDiskNotification;
33 class MagnificationManager; 33 class MagnificationManager;
34 class NetworkPrefStateObserver; 34 class NetworkPrefStateObserver;
35 class PeripheralBatteryObserver; 35 class PeripheralBatteryObserver;
36 class PowerPrefs; 36 class PowerPrefs;
37 class RendererFreezer; 37 class RendererFreezer;
38 class SessionManagerObserver; 38 class SessionManagerObserver;
39 class SwapMetrics; 39 class SwapMetrics;
40 class WakeOnWifiManager; 40 class WakeOnWifiManager;
41 class NetworkThrottlingObserver;
41 42
42 namespace default_app_order { 43 namespace default_app_order {
43 class ExternalLoader; 44 class ExternalLoader;
44 } 45 }
45 46
46 namespace internal { 47 namespace internal {
47 class DBusServices; 48 class DBusServices;
48 } 49 }
49 50
50 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux { 51 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux {
(...skipping 21 matching lines...) Expand all
72 std::unique_ptr<default_app_order::ExternalLoader> app_order_loader_; 73 std::unique_ptr<default_app_order::ExternalLoader> app_order_loader_;
73 std::unique_ptr<NetworkPrefStateObserver> network_pref_state_observer_; 74 std::unique_ptr<NetworkPrefStateObserver> network_pref_state_observer_;
74 std::unique_ptr<ExtensionVolumeObserver> extension_volume_observer_; 75 std::unique_ptr<ExtensionVolumeObserver> extension_volume_observer_;
75 std::unique_ptr<PeripheralBatteryObserver> peripheral_battery_observer_; 76 std::unique_ptr<PeripheralBatteryObserver> peripheral_battery_observer_;
76 std::unique_ptr<PowerPrefs> power_prefs_; 77 std::unique_ptr<PowerPrefs> power_prefs_;
77 std::unique_ptr<LoginLockStateNotifier> login_lock_state_notifier_; 78 std::unique_ptr<LoginLockStateNotifier> login_lock_state_notifier_;
78 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_; 79 std::unique_ptr<IdleActionWarningObserver> idle_action_warning_observer_;
79 std::unique_ptr<DataPromoNotification> data_promo_notification_; 80 std::unique_ptr<DataPromoNotification> data_promo_notification_;
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_;
83 std::unique_ptr<NetworkThrottlingObserver> network_throttling_observer_;
82 84
83 std::unique_ptr<internal::DBusServices> dbus_services_; 85 std::unique_ptr<internal::DBusServices> dbus_services_;
84 86
85 std::unique_ptr<session_manager::SessionManager> session_manager_; 87 std::unique_ptr<session_manager::SessionManager> session_manager_;
86 88
87 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_; 89 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_;
88 90
89 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; 91 scoped_refptr<chromeos::ExternalMetrics> external_metrics_;
90 92
91 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; 93 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_;
92 94
93 std::unique_ptr<LowDiskNotification> low_disk_notification_; 95 std::unique_ptr<LowDiskNotification> low_disk_notification_;
94 96
95 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 97 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
96 }; 98 };
97 99
98 } // namespace chromeos 100 } // namespace chromeos
99 101
100 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 102 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698