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

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

Issue 12992004: chromeos: Remove dead power manager code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 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
(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_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/chrome_browser_main_chromeos.cc ('k') | chrome/browser/chromeos/power/output_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698