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

Unified Diff: ash/shell.h

Issue 10870036: Allow storing display preferences per device. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 278dc569ec1df570adac54addd760730ceab30b1..0f2d7c046b5ea0446fa2f53a10710b2a0a42f116 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -61,6 +61,7 @@ namespace ash {
class AcceleratorController;
class CapsLockDelegate;
class DesktopBackgroundController;
+class DisplayController;
class HighContrastController;
class Launcher;
class NestedDispatcherController;
@@ -80,7 +81,6 @@ class AcceleratorFilter;
class ActivationController;
class AppListController;
class CaptureController;
-class DisplayController;
class DragDropController;
class EventRewriterEventFilter;
class FocusCycler;
@@ -276,7 +276,7 @@ class ASH_EXPORT Shell : ash::CursorDelegate {
internal::FocusCycler* focus_cycler() {
return focus_cycler_.get();
}
- internal::DisplayController* display_controller() {
+ DisplayController* display_controller() {
return display_controller_.get();
}
CursorManager* cursor_manager() { return &cursor_manager_; }
@@ -435,7 +435,7 @@ class ASH_EXPORT Shell : ash::CursorDelegate {
scoped_ptr<VideoDetector> video_detector_;
scoped_ptr<WindowCycleController> window_cycle_controller_;
scoped_ptr<internal::FocusCycler> focus_cycler_;
- scoped_ptr<internal::DisplayController> display_controller_;
+ scoped_ptr<DisplayController> display_controller_;
scoped_ptr<HighContrastController> high_contrast_controller_;
scoped_ptr<internal::MagnificationController> magnification_controller_;
scoped_ptr<aura::FocusManager> focus_manager_;

Powered by Google App Engine
This is Rietveld 408576698