| OLD | NEW |
| 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 <memory> | 8 #include <memory> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 namespace ash { | 82 namespace ash { |
| 83 | 83 |
| 84 class AcceleratorController; | 84 class AcceleratorController; |
| 85 class AccessibilityDelegate; | 85 class AccessibilityDelegate; |
| 86 class AppListController; | 86 class AppListController; |
| 87 class AshNativeCursorManager; | 87 class AshNativeCursorManager; |
| 88 class AutoclickController; | 88 class AutoclickController; |
| 89 class BluetoothNotificationController; | 89 class BluetoothNotificationController; |
| 90 class CaptureController; | 90 class CaptureController; |
| 91 class ContainerDelegate; |
| 91 class DesktopBackgroundController; | 92 class DesktopBackgroundController; |
| 92 class DisplayChangeObserver; | 93 class DisplayChangeObserver; |
| 93 class DisplayColorManager; | 94 class DisplayColorManager; |
| 94 class DisplayConfigurationController; | 95 class DisplayConfigurationController; |
| 95 class WindowTreeHostManager; | 96 class WindowTreeHostManager; |
| 96 class DisplayErrorObserver; | 97 class DisplayErrorObserver; |
| 97 class DisplayManager; | 98 class DisplayManager; |
| 98 class DragDropController; | 99 class DragDropController; |
| 99 class EventClientImpl; | 100 class EventClientImpl; |
| 100 class EventRewriterEventFilter; | 101 class EventRewriterEventFilter; |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 } | 436 } |
| 436 | 437 |
| 437 NewWindowDelegate* new_window_delegate() { | 438 NewWindowDelegate* new_window_delegate() { |
| 438 return new_window_delegate_.get(); | 439 return new_window_delegate_.get(); |
| 439 } | 440 } |
| 440 | 441 |
| 441 MediaDelegate* media_delegate() { | 442 MediaDelegate* media_delegate() { |
| 442 return media_delegate_.get(); | 443 return media_delegate_.get(); |
| 443 } | 444 } |
| 444 | 445 |
| 446 ContainerDelegate* container_delegate() { return container_delegate_.get(); } |
| 447 |
| 445 HighContrastController* high_contrast_controller() { | 448 HighContrastController* high_contrast_controller() { |
| 446 return high_contrast_controller_.get(); | 449 return high_contrast_controller_.get(); |
| 447 } | 450 } |
| 448 | 451 |
| 449 MagnificationController* magnification_controller() { | 452 MagnificationController* magnification_controller() { |
| 450 return magnification_controller_.get(); | 453 return magnification_controller_.get(); |
| 451 } | 454 } |
| 452 | 455 |
| 453 PartialMagnificationController* partial_magnification_controller() { | 456 PartialMagnificationController* partial_magnification_controller() { |
| 454 return partial_magnification_controller_.get(); | 457 return partial_magnification_controller_.get(); |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 std::unique_ptr<UserMetricsRecorder> user_metrics_recorder_; | 684 std::unique_ptr<UserMetricsRecorder> user_metrics_recorder_; |
| 682 std::unique_ptr<AcceleratorController> accelerator_controller_; | 685 std::unique_ptr<AcceleratorController> accelerator_controller_; |
| 683 std::unique_ptr<ShellDelegate> delegate_; | 686 std::unique_ptr<ShellDelegate> delegate_; |
| 684 std::unique_ptr<SystemTrayDelegate> system_tray_delegate_; | 687 std::unique_ptr<SystemTrayDelegate> system_tray_delegate_; |
| 685 std::unique_ptr<SystemTrayNotifier> system_tray_notifier_; | 688 std::unique_ptr<SystemTrayNotifier> system_tray_notifier_; |
| 686 std::unique_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; | 689 std::unique_ptr<UserWallpaperDelegate> user_wallpaper_delegate_; |
| 687 std::unique_ptr<SessionStateDelegate> session_state_delegate_; | 690 std::unique_ptr<SessionStateDelegate> session_state_delegate_; |
| 688 std::unique_ptr<AccessibilityDelegate> accessibility_delegate_; | 691 std::unique_ptr<AccessibilityDelegate> accessibility_delegate_; |
| 689 std::unique_ptr<NewWindowDelegate> new_window_delegate_; | 692 std::unique_ptr<NewWindowDelegate> new_window_delegate_; |
| 690 std::unique_ptr<MediaDelegate> media_delegate_; | 693 std::unique_ptr<MediaDelegate> media_delegate_; |
| 694 std::unique_ptr<ContainerDelegate> container_delegate_; |
| 691 std::unique_ptr<PointerWatcherDelegate> pointer_watcher_delegate_; | 695 std::unique_ptr<PointerWatcherDelegate> pointer_watcher_delegate_; |
| 692 std::unique_ptr<ShelfDelegate> shelf_delegate_; | 696 std::unique_ptr<ShelfDelegate> shelf_delegate_; |
| 693 std::unique_ptr<ShelfItemDelegateManager> shelf_item_delegate_manager_; | 697 std::unique_ptr<ShelfItemDelegateManager> shelf_item_delegate_manager_; |
| 694 std::unique_ptr<ShelfWindowWatcher> shelf_window_watcher_; | 698 std::unique_ptr<ShelfWindowWatcher> shelf_window_watcher_; |
| 695 | 699 |
| 696 std::unique_ptr<ShelfModel> shelf_model_; | 700 std::unique_ptr<ShelfModel> shelf_model_; |
| 697 std::unique_ptr<WindowPositioner> window_positioner_; | 701 std::unique_ptr<WindowPositioner> window_positioner_; |
| 698 | 702 |
| 699 std::unique_ptr<DragDropController> drag_drop_controller_; | 703 std::unique_ptr<DragDropController> drag_drop_controller_; |
| 700 std::unique_ptr<ResizeShadowController> resize_shadow_controller_; | 704 std::unique_ptr<ResizeShadowController> resize_shadow_controller_; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 bool in_mus_ = false; | 814 bool in_mus_ = false; |
| 811 | 815 |
| 812 std::unique_ptr<KeyboardUI> keyboard_ui_; | 816 std::unique_ptr<KeyboardUI> keyboard_ui_; |
| 813 | 817 |
| 814 DISALLOW_COPY_AND_ASSIGN(Shell); | 818 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 815 }; | 819 }; |
| 816 | 820 |
| 817 } // namespace ash | 821 } // namespace ash |
| 818 | 822 |
| 819 #endif // ASH_SHELL_H_ | 823 #endif // ASH_SHELL_H_ |
| OLD | NEW |