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

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

Issue 9580023: Enable user change background image in settings page in Aura build. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: More refactor Created 8 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_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 ResumeObserver; 13 class ResumeObserver;
14 class ScreenLockObserver; 14 class ScreenLockObserver;
15 class SessionManagerObserver; 15 class SessionManagerObserver;
16 16
17 #if defined(USE_AURA) 17 #if defined(USE_AURA)
18 class DesktopBackgroundObserver;
18 class InitialBrowserWindowObserver; 19 class InitialBrowserWindowObserver;
19 class PowerButtonObserver; 20 class PowerButtonObserver;
20 class VideoPropertyWriter; 21 class VideoPropertyWriter;
21 #endif 22 #endif
22 } // namespace chromeos 23 } // namespace chromeos
23 24
24 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux { 25 class ChromeBrowserMainPartsChromeos : public ChromeBrowserMainPartsLinux {
25 public: 26 public:
26 explicit ChromeBrowserMainPartsChromeos( 27 explicit ChromeBrowserMainPartsChromeos(
27 const content::MainFunctionParams& parameters); 28 const content::MainFunctionParams& parameters);
(...skipping 13 matching lines...) Expand all
41 42
42 virtual void PostMainMessageLoopRun() OVERRIDE; 43 virtual void PostMainMessageLoopRun() OVERRIDE;
43 44
44 private: 45 private:
45 scoped_ptr<chromeos::BrightnessObserver> brightness_observer_; 46 scoped_ptr<chromeos::BrightnessObserver> brightness_observer_;
46 scoped_ptr<chromeos::ResumeObserver> resume_observer_; 47 scoped_ptr<chromeos::ResumeObserver> resume_observer_;
47 scoped_ptr<chromeos::ScreenLockObserver> screen_lock_observer_; 48 scoped_ptr<chromeos::ScreenLockObserver> screen_lock_observer_;
48 scoped_ptr<chromeos::SessionManagerObserver> session_manager_observer_; 49 scoped_ptr<chromeos::SessionManagerObserver> session_manager_observer_;
49 50
50 #if defined(USE_AURA) 51 #if defined(USE_AURA)
52 scoped_ptr<chromeos::DesktopBackgroundObserver> desktop_background_observer_;
51 scoped_ptr<chromeos::InitialBrowserWindowObserver> 53 scoped_ptr<chromeos::InitialBrowserWindowObserver>
52 initial_browser_window_observer_; 54 initial_browser_window_observer_;
53 scoped_ptr<chromeos::PowerButtonObserver> power_button_observer_; 55 scoped_ptr<chromeos::PowerButtonObserver> power_button_observer_;
54 scoped_ptr<chromeos::VideoPropertyWriter> video_property_writer_; 56 scoped_ptr<chromeos::VideoPropertyWriter> video_property_writer_;
55 #endif 57 #endif
56 58
57 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 59 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
58 }; 60 };
59 61
60 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 62 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698