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

Side by Side Diff: ash/shell.h

Issue 10870036: Allow storing display preferences per device. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 3 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
« no previous file with comments | « ash/extended_desktop_unittest.cc ('k') | ash/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ASH_SHELL_H_ 5 #ifndef ASH_SHELL_H_
6 #define ASH_SHELL_H_ 6 #define ASH_SHELL_H_
7 7
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 namespace views { 54 namespace views {
55 class NonClientFrameView; 55 class NonClientFrameView;
56 class Widget; 56 class Widget;
57 } 57 }
58 58
59 namespace ash { 59 namespace ash {
60 60
61 class AcceleratorController; 61 class AcceleratorController;
62 class CapsLockDelegate; 62 class CapsLockDelegate;
63 class DesktopBackgroundController; 63 class DesktopBackgroundController;
64 class DisplayController;
64 class HighContrastController; 65 class HighContrastController;
65 class Launcher; 66 class Launcher;
66 class NestedDispatcherController; 67 class NestedDispatcherController;
67 class PowerButtonController; 68 class PowerButtonController;
68 class ScreenAsh; 69 class ScreenAsh;
69 class ShellDelegate; 70 class ShellDelegate;
70 class ShellObserver; 71 class ShellObserver;
71 class SystemTrayDelegate; 72 class SystemTrayDelegate;
72 class SystemTray; 73 class SystemTray;
73 class UserActivityDetector; 74 class UserActivityDetector;
74 class UserWallpaperDelegate; 75 class UserWallpaperDelegate;
75 class VideoDetector; 76 class VideoDetector;
76 class WindowCycleController; 77 class WindowCycleController;
77 78
78 namespace internal { 79 namespace internal {
79 class AcceleratorFilter; 80 class AcceleratorFilter;
80 class ActivationController; 81 class ActivationController;
81 class AppListController; 82 class AppListController;
82 class CaptureController; 83 class CaptureController;
83 class DisplayController;
84 class DragDropController; 84 class DragDropController;
85 class EventRewriterEventFilter; 85 class EventRewriterEventFilter;
86 class FocusCycler; 86 class FocusCycler;
87 class MagnificationController; 87 class MagnificationController;
88 class MouseCursorEventFilter; 88 class MouseCursorEventFilter;
89 class OutputConfiguratorAnimation; 89 class OutputConfiguratorAnimation;
90 class OverlayEventFilter; 90 class OverlayEventFilter;
91 class PanelLayoutManager; 91 class PanelLayoutManager;
92 class ResizeShadowController; 92 class ResizeShadowController;
93 class RootWindowController; 93 class RootWindowController;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 } 267 }
268 VideoDetector* video_detector() { 268 VideoDetector* video_detector() {
269 return video_detector_.get(); 269 return video_detector_.get();
270 } 270 }
271 WindowCycleController* window_cycle_controller() { 271 WindowCycleController* window_cycle_controller() {
272 return window_cycle_controller_.get(); 272 return window_cycle_controller_.get();
273 } 273 }
274 internal::FocusCycler* focus_cycler() { 274 internal::FocusCycler* focus_cycler() {
275 return focus_cycler_.get(); 275 return focus_cycler_.get();
276 } 276 }
277 internal::DisplayController* display_controller() { 277 DisplayController* display_controller() {
278 return display_controller_.get(); 278 return display_controller_.get();
279 } 279 }
280 internal::MouseCursorEventFilter* mouse_cursor_filter() { 280 internal::MouseCursorEventFilter* mouse_cursor_filter() {
281 return mouse_cursor_filter_.get(); 281 return mouse_cursor_filter_.get();
282 } 282 }
283 CursorManager* cursor_manager() { return &cursor_manager_; } 283 CursorManager* cursor_manager() { return &cursor_manager_; }
284 284
285 ShellDelegate* delegate() { return delegate_.get(); } 285 ShellDelegate* delegate() { return delegate_.get(); }
286 286
287 UserWallpaperDelegate* user_wallpaper_delegate() { 287 UserWallpaperDelegate* user_wallpaper_delegate() {
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_; 429 scoped_ptr<internal::ResizeShadowController> resize_shadow_controller_;
430 scoped_ptr<internal::ShadowController> shadow_controller_; 430 scoped_ptr<internal::ShadowController> shadow_controller_;
431 scoped_ptr<internal::TooltipController> tooltip_controller_; 431 scoped_ptr<internal::TooltipController> tooltip_controller_;
432 scoped_ptr<internal::VisibilityController> visibility_controller_; 432 scoped_ptr<internal::VisibilityController> visibility_controller_;
433 scoped_ptr<DesktopBackgroundController> desktop_background_controller_; 433 scoped_ptr<DesktopBackgroundController> desktop_background_controller_;
434 scoped_ptr<PowerButtonController> power_button_controller_; 434 scoped_ptr<PowerButtonController> power_button_controller_;
435 scoped_ptr<UserActivityDetector> user_activity_detector_; 435 scoped_ptr<UserActivityDetector> user_activity_detector_;
436 scoped_ptr<VideoDetector> video_detector_; 436 scoped_ptr<VideoDetector> video_detector_;
437 scoped_ptr<WindowCycleController> window_cycle_controller_; 437 scoped_ptr<WindowCycleController> window_cycle_controller_;
438 scoped_ptr<internal::FocusCycler> focus_cycler_; 438 scoped_ptr<internal::FocusCycler> focus_cycler_;
439 scoped_ptr<internal::DisplayController> display_controller_; 439 scoped_ptr<DisplayController> display_controller_;
440 scoped_ptr<HighContrastController> high_contrast_controller_; 440 scoped_ptr<HighContrastController> high_contrast_controller_;
441 scoped_ptr<internal::MagnificationController> magnification_controller_; 441 scoped_ptr<internal::MagnificationController> magnification_controller_;
442 scoped_ptr<aura::FocusManager> focus_manager_; 442 scoped_ptr<aura::FocusManager> focus_manager_;
443 scoped_ptr<aura::client::UserActionClient> user_action_client_; 443 scoped_ptr<aura::client::UserActionClient> user_action_client_;
444 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_; 444 scoped_ptr<internal::MouseCursorEventFilter> mouse_cursor_filter_;
445 scoped_ptr<internal::ScreenPositionController> screen_position_controller_; 445 scoped_ptr<internal::ScreenPositionController> screen_position_controller_;
446 446
447 // An event filter that rewrites or drops an event. 447 // An event filter that rewrites or drops an event.
448 scoped_ptr<internal::EventRewriterEventFilter> event_rewriter_filter_; 448 scoped_ptr<internal::EventRewriterEventFilter> event_rewriter_filter_;
449 449
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 490
491 // Used by ash/shell. 491 // Used by ash/shell.
492 content::BrowserContext* browser_context_; 492 content::BrowserContext* browser_context_;
493 493
494 DISALLOW_COPY_AND_ASSIGN(Shell); 494 DISALLOW_COPY_AND_ASSIGN(Shell);
495 }; 495 };
496 496
497 } // namespace ash 497 } // namespace ash
498 498
499 #endif // ASH_SHELL_H_ 499 #endif // ASH_SHELL_H_
OLDNEW
« no previous file with comments | « ash/extended_desktop_unittest.cc ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698