Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: chrome/browser/chromeos/power/output_observer.h

Issue 12391004: chromeos: Add DisplayPowerServiceProvider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ugh, TrayDisplay was including output_configurator.h on windows Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/dbus/org.chromium.LibCrosService.conf ('k') | chrome/browser/chromeos/power/output_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698