| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "base/compiler_specific.h" | |
| 10 #include "chromeos/dbus/power_manager_client.h" | |
| 11 | |
| 12 namespace chromeos { | |
| 13 | |
| 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. | |
| 16 // TODO(derat): Remove this class after powerd is calling the method | |
| 17 // exported by DisplayPowerServiceProvider instead. | |
| 18 class OutputObserver : public PowerManagerClient::Observer { | |
| 19 public: | |
| 20 // This class registers/unregisters itself as an observer in ctor/dtor. | |
| 21 OutputObserver(); | |
| 22 virtual ~OutputObserver(); | |
| 23 | |
| 24 private: | |
| 25 // PowerManagerClient::Observer implementation. | |
| 26 virtual void ScreenPowerSet(bool power_on, bool all_displays) OVERRIDE; | |
| 27 | |
| 28 DISALLOW_COPY_AND_ASSIGN(OutputObserver); | |
| 29 }; | |
| 30 | |
| 31 } // namespace chromeos | |
| 32 | |
| 33 #endif // CHROME_BROWSER_CHROMEOS_POWER_OUTPUT_OBSERVER_H_ | |
| OLD | NEW |