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

Side by Side Diff: chrome/browser/chromeos/chrome_browser_main_chromeos.h

Issue 10263011: chromeos: Add support for dimming the screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 8 years, 7 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_CHROME_BROWSER_MAIN_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "chrome/browser/chrome_browser_main_linux.h" 9 #include "chrome/browser/chrome_browser_main_linux.h"
10 10
11 namespace chromeos { 11 namespace chromeos {
12 class BrightnessObserver; 12 class BrightnessObserver;
13 class DesktopBackgroundObserver; 13 class DesktopBackgroundObserver;
14 class PowerButtonObserver; 14 class PowerButtonObserver;
15 class PowerStateOverride; 15 class PowerStateOverride;
16 class ResumeObserver; 16 class ResumeObserver;
17 class ScreenDimmingObserver;
17 class ScreenLockObserver; 18 class ScreenLockObserver;
18 class SessionManagerObserver; 19 class SessionManagerObserver;
19 class VideoPropertyWriter; 20 class VideoPropertyWriter;
20 } // namespace chromeos 21 } // namespace chromeos
21 22
22 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux { 23 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux {
23 public: 24 public:
24 explicit ChromeBrowserMainPartsChromeos( 25 explicit ChromeBrowserMainPartsChromeos(
25 const content::MainFunctionParams& parameters); 26 const content::MainFunctionParams& parameters);
26 virtual ~ChromeBrowserMainPartsChromeos(); 27 virtual ~ChromeBrowserMainPartsChromeos();
(...skipping 14 matching lines...) Expand all
41 42
42 private: 43 private:
43 scoped_ptr<chromeos::BrightnessObserver> brightness_observer_; 44 scoped_ptr<chromeos::BrightnessObserver> brightness_observer_;
44 scoped_ptr<chromeos::ResumeObserver> resume_observer_; 45 scoped_ptr<chromeos::ResumeObserver> resume_observer_;
45 scoped_ptr<chromeos::ScreenLockObserver> screen_lock_observer_; 46 scoped_ptr<chromeos::ScreenLockObserver> screen_lock_observer_;
46 scoped_ptr<chromeos::SessionManagerObserver> session_manager_observer_; 47 scoped_ptr<chromeos::SessionManagerObserver> session_manager_observer_;
47 scoped_ptr<chromeos::DesktopBackgroundObserver> desktop_background_observer_; 48 scoped_ptr<chromeos::DesktopBackgroundObserver> desktop_background_observer_;
48 scoped_ptr<chromeos::PowerButtonObserver> power_button_observer_; 49 scoped_ptr<chromeos::PowerButtonObserver> power_button_observer_;
49 scoped_ptr<chromeos::PowerStateOverride> power_state_override_; 50 scoped_ptr<chromeos::PowerStateOverride> power_state_override_;
50 scoped_ptr<chromeos::VideoPropertyWriter> video_property_writer_; 51 scoped_ptr<chromeos::VideoPropertyWriter> video_property_writer_;
52 scoped_ptr<chromeos::ScreenDimmingObserver> screen_dimming_observer_;
51 53
52 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 54 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
53 }; 55 };
54 56
55 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 57 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
OLDNEW
« no previous file with comments | « ash/wm/screen_dimmer_unittest.cc ('k') | chrome/browser/chromeos/chrome_browser_main_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698