OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef BASE_POWER_MONITOR_POWER_MONITOR_SOURCE_H_ | |
6 #define BASE_POWER_MONITOR_POWER_MONITOR_SOURCE_H_ | |
7 | |
8 #include "base/base_export.h" | |
9 #include "base/basictypes.h" | |
10 #include "base/memory/ref_counted.h" | |
11 #include "base/observer_list_threadsafe.h" | |
12 #include "base/synchronization/lock.h" | |
13 | |
14 namespace base { | |
15 | |
16 class PowerMonitor; | |
17 | |
18 // Communicates power state changes to the power monitor. | |
19 class BASE_EXPORT PowerMonitorSource { | |
20 public: | |
21 PowerMonitorSource(); | |
22 virtual ~PowerMonitorSource(); | |
23 | |
24 // Normalized list of power events. | |
25 enum PowerEvent { | |
26 POWER_STATE_EVENT, // The Power status of the system has changed. | |
27 SUSPEND_EVENT, // The system is being suspended. | |
28 RESUME_EVENT // The system is being resumed. | |
29 }; | |
30 | |
31 // Is the computer currently on battery power. Can be called on any thread. | |
32 bool BatteryPower(); | |
palmer
2013/07/09 21:16:10
Same here: harmonize this name. Why do you have th
bajones
2013/07/09 22:28:00
Better naming could clear this up. (This was in pl
| |
33 | |
34 protected: | |
35 friend class PowerMonitorTest; | |
36 | |
37 // Friend function that is allowed to access the protected ProcessPowerEvent. | |
38 friend void ProcessPowerEventHelper(PowerEvent); | |
39 | |
40 void ProcessPowerEvent(PowerEvent event_id); | |
41 // Platform-specific method to check whether the system is currently | |
42 // running on battery power. Returns true if running on batteries, | |
43 // false otherwise. | |
44 virtual bool IsBatteryPower(); | |
vandebo (ex-Chrome)
2013/07/09 22:22:08
Make this pure virtual ?
vandebo (ex-Chrome)
2013/07/09 22:22:08
Maybe IsBatteryPowerImpl() ?
| |
45 | |
46 bool battery_in_use_; | |
vandebo (ex-Chrome)
2013/07/09 22:22:08
Shouldn't these all be private?
| |
47 bool suspended_; | |
48 | |
49 Lock lock_; | |
50 | |
51 DISALLOW_COPY_AND_ASSIGN(PowerMonitorSource); | |
52 }; | |
53 | |
54 } // namespace base | |
55 | |
56 #endif // BASE_POWER_MONITOR_POWER_MONITOR_SOURCE_H_ | |
OLD | NEW |