OLD | NEW |
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_POWER_OUTPUT_OBSERVER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ |
6 #define CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chromeos/dbus/power_manager_client.h" | 10 #include "chromeos/dbus/power_manager_client.h" |
11 | 11 |
12 namespace chromeos { | 12 namespace chromeos { |
13 | 13 |
14 // This observer listens for when video outputs have been turned off so that the | 14 // This observer listens for when video outputs have been turned off so that the |
15 // corresponding CRTCs can be disabled to force the connected output off. | 15 // corresponding CRTCs can be disabled to force the connected output off. |
| 16 // TODO(derat): Remove this class after powerd is calling the method |
| 17 // exported by DisplayPowerServiceProvider instead. |
16 class OutputObserver : public PowerManagerClient::Observer { | 18 class OutputObserver : public PowerManagerClient::Observer { |
17 public: | 19 public: |
18 // This class registers/unregisters itself as an observer in ctor/dtor. | 20 // This class registers/unregisters itself as an observer in ctor/dtor. |
19 OutputObserver(); | 21 OutputObserver(); |
20 virtual ~OutputObserver(); | 22 virtual ~OutputObserver(); |
21 | 23 |
22 private: | 24 private: |
23 // PowerManagerClient::Observer implementation. | 25 // PowerManagerClient::Observer implementation. |
24 virtual void ScreenPowerSet(bool power_on, bool all_displays) OVERRIDE; | 26 virtual void ScreenPowerSet(bool power_on, bool all_displays) OVERRIDE; |
25 | 27 |
26 DISALLOW_COPY_AND_ASSIGN(OutputObserver); | 28 DISALLOW_COPY_AND_ASSIGN(OutputObserver); |
27 }; | 29 }; |
28 | 30 |
29 } // namespace chromeos | 31 } // namespace chromeos |
30 | 32 |
31 #endif // CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ | 33 #endif // CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ |
OLD | NEW |