OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 APP_SYSTEM_MONITOR_H_ | 5 #ifndef APP_SYSTEM_MONITOR_H_ |
6 #define APP_SYSTEM_MONITOR_H_ | 6 #define APP_SYSTEM_MONITOR_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
11 // Windows HiRes timers drain the battery faster so we need to know the battery | 11 // Windows HiRes timers drain the battery faster so we need to know the battery |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // Windows-specific handling of a WM_POWERBROADCAST message. | 87 // Windows-specific handling of a WM_POWERBROADCAST message. |
88 // Embedders of this API should hook their top-level window | 88 // Embedders of this API should hook their top-level window |
89 // message loop and forward WM_POWERBROADCAST through this call. | 89 // message loop and forward WM_POWERBROADCAST through this call. |
90 void ProcessWmPowerBroadcastMessage(int event_id); | 90 void ProcessWmPowerBroadcastMessage(int event_id); |
91 #endif | 91 #endif |
92 | 92 |
93 // Cross-platform handling of a power event. | 93 // Cross-platform handling of a power event. |
94 void ProcessPowerMessage(PowerEvent event_id); | 94 void ProcessPowerMessage(PowerEvent event_id); |
95 | 95 |
96 private: | 96 private: |
| 97 #if defined(OS_MACOSX) |
| 98 void PlatformInit(); |
| 99 void PlatformDestroy(); |
| 100 #endif |
| 101 |
97 // Platform-specific method to check whether the system is currently | 102 // Platform-specific method to check whether the system is currently |
98 // running on battery power. Returns true if running on batteries, | 103 // running on battery power. Returns true if running on batteries, |
99 // false otherwise. | 104 // false otherwise. |
100 bool IsBatteryPower(); | 105 bool IsBatteryPower(); |
101 | 106 |
102 // Checks the battery status and notifies observers if the battery | 107 // Checks the battery status and notifies observers if the battery |
103 // status has changed. | 108 // status has changed. |
104 void BatteryCheck(); | 109 void BatteryCheck(); |
105 | 110 |
106 // Functions to trigger notifications. | 111 // Functions to trigger notifications. |
107 void NotifyPowerStateChange(); | 112 void NotifyPowerStateChange(); |
108 void NotifySuspend(); | 113 void NotifySuspend(); |
109 void NotifyResume(); | 114 void NotifyResume(); |
110 | 115 |
111 scoped_refptr<ObserverListThreadSafe<PowerObserver> > observer_list_; | 116 scoped_refptr<ObserverListThreadSafe<PowerObserver> > observer_list_; |
112 bool battery_in_use_; | 117 bool battery_in_use_; |
113 bool suspended_; | 118 bool suspended_; |
114 | 119 |
115 #if defined(ENABLE_BATTERY_MONITORING) | 120 #if defined(ENABLE_BATTERY_MONITORING) |
116 base::OneShotTimer<SystemMonitor> delayed_battery_check_; | 121 base::OneShotTimer<SystemMonitor> delayed_battery_check_; |
117 #endif | 122 #endif |
118 | 123 |
119 DISALLOW_COPY_AND_ASSIGN(SystemMonitor); | 124 DISALLOW_COPY_AND_ASSIGN(SystemMonitor); |
120 }; | 125 }; |
121 | 126 |
122 #endif // APP_SYSTEM_MONITOR_H_ | 127 #endif // APP_SYSTEM_MONITOR_H_ |
OLD | NEW |