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_OBSERVER_H_ | |
6 #define BASE_POWER_MONITOR_POWER_OBSERVER_H_ | |
7 | |
8 #include "base/base_export.h" | |
9 #include "base/compiler_specific.h" | |
vandebo (ex-Chrome)
2013/03/19 23:36:04
I don't think you need this.
Hongbo Min
2013/03/20 13:01:50
It is needed since OVERRIDE directive should be us
| |
10 | |
11 namespace base { | |
12 | |
13 // Callbacks will be called on the thread which creates the PowerMonitor. | |
vandebo (ex-Chrome)
2013/03/19 23:36:04
This conflicts with the documentation in observer_
Hongbo Min
2013/03/20 13:01:50
Removed the comments.
| |
14 // During the callback, Add/RemoveObserver will block until the callbacks | |
15 // are finished. Observers should implement quick callback functions; if | |
16 // lengthy operations are needed, the observer should take care to invoke | |
17 // the operation on an appropriate thread. | |
18 class BASE_EXPORT PowerObserver { | |
19 public: | |
20 // Notification of a change in power status of the computer, such | |
21 // as from switching between battery and A/C power. | |
22 virtual void OnPowerStateChange(bool on_battery_power) {}; | |
23 | |
24 // Notification that the system is suspending. | |
25 virtual void OnSuspend() {} | |
26 | |
27 // Notification that the system is resuming. | |
28 virtual void OnResume() {} | |
29 | |
30 protected: | |
31 virtual ~PowerObserver() {} | |
32 }; | |
33 | |
34 } // namespace base | |
35 | |
36 #endif // BASE_POWER_MONITOR_POWER_OBSERVER_H_ | |
OLD | NEW |