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

Side by Side Diff: ash/shell.h

Issue 1760773004: Add "Open with <ARC-app-name>" items to the context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 8 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
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 <memory> 8 #include <memory>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 class LocaleNotificationController; 104 class LocaleNotificationController;
105 class LockStateController; 105 class LockStateController;
106 class LogoutConfirmationController; 106 class LogoutConfirmationController;
107 class MagnificationController; 107 class MagnificationController;
108 class MaximizeModeController; 108 class MaximizeModeController;
109 class MaximizeModeWindowManager; 109 class MaximizeModeWindowManager;
110 class MediaDelegate; 110 class MediaDelegate;
111 class MouseCursorEventFilter; 111 class MouseCursorEventFilter;
112 class MruWindowTracker; 112 class MruWindowTracker;
113 class NewWindowDelegate; 113 class NewWindowDelegate;
114 class OpenWithMenuController;
114 class OverlayEventFilter; 115 class OverlayEventFilter;
115 class PartialMagnificationController; 116 class PartialMagnificationController;
116 class PartialScreenshotController; 117 class PartialScreenshotController;
117 class PowerButtonController; 118 class PowerButtonController;
118 class PowerEventObserver; 119 class PowerEventObserver;
119 class ProjectingObserver; 120 class ProjectingObserver;
120 class ResizeShadowController; 121 class ResizeShadowController;
121 class ResolutionNotificationController; 122 class ResolutionNotificationController;
122 class RootWindowController; 123 class RootWindowController;
123 class ScopedTargetRootWindow; 124 class ScopedTargetRootWindow;
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 ::wm::CompoundEventFilter* env_filter() { 348 ::wm::CompoundEventFilter* env_filter() {
348 return env_filter_.get(); 349 return env_filter_.get();
349 } 350 }
350 views::corewm::TooltipController* tooltip_controller() { 351 views::corewm::TooltipController* tooltip_controller() {
351 return tooltip_controller_.get(); 352 return tooltip_controller_.get();
352 } 353 }
353 OverlayEventFilter* overlay_filter() { return overlay_filter_.get(); } 354 OverlayEventFilter* overlay_filter() { return overlay_filter_.get(); }
354 DesktopBackgroundController* desktop_background_controller() { 355 DesktopBackgroundController* desktop_background_controller() {
355 return desktop_background_controller_.get(); 356 return desktop_background_controller_.get();
356 } 357 }
358 OpenWithMenuController* open_with_menu_controller() {
359 return open_with_menu_controller_.get();
360 }
357 PowerButtonController* power_button_controller() { 361 PowerButtonController* power_button_controller() {
358 return power_button_controller_.get(); 362 return power_button_controller_.get();
359 } 363 }
360 LockStateController* lock_state_controller() { 364 LockStateController* lock_state_controller() {
361 return lock_state_controller_.get(); 365 return lock_state_controller_.get();
362 } 366 }
363 MruWindowTracker* mru_window_tracker() { 367 MruWindowTracker* mru_window_tracker() {
364 return mru_window_tracker_.get(); 368 return mru_window_tracker_.get();
365 } 369 }
366 VideoDetector* video_detector() { 370 VideoDetector* video_detector() {
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 std::unique_ptr<ShelfModel> shelf_model_; 667 std::unique_ptr<ShelfModel> shelf_model_;
664 std::unique_ptr<WindowPositioner> window_positioner_; 668 std::unique_ptr<WindowPositioner> window_positioner_;
665 669
666 std::unique_ptr<DragDropController> drag_drop_controller_; 670 std::unique_ptr<DragDropController> drag_drop_controller_;
667 std::unique_ptr<ResizeShadowController> resize_shadow_controller_; 671 std::unique_ptr<ResizeShadowController> resize_shadow_controller_;
668 std::unique_ptr<::wm::ShadowController> shadow_controller_; 672 std::unique_ptr<::wm::ShadowController> shadow_controller_;
669 std::unique_ptr<::wm::VisibilityController> visibility_controller_; 673 std::unique_ptr<::wm::VisibilityController> visibility_controller_;
670 std::unique_ptr<::wm::WindowModalityController> window_modality_controller_; 674 std::unique_ptr<::wm::WindowModalityController> window_modality_controller_;
671 std::unique_ptr<views::corewm::TooltipController> tooltip_controller_; 675 std::unique_ptr<views::corewm::TooltipController> tooltip_controller_;
672 std::unique_ptr<DesktopBackgroundController> desktop_background_controller_; 676 std::unique_ptr<DesktopBackgroundController> desktop_background_controller_;
677 std::unique_ptr<OpenWithMenuController> open_with_menu_controller_;
673 std::unique_ptr<PowerButtonController> power_button_controller_; 678 std::unique_ptr<PowerButtonController> power_button_controller_;
674 std::unique_ptr<LockStateController> lock_state_controller_; 679 std::unique_ptr<LockStateController> lock_state_controller_;
675 std::unique_ptr<MruWindowTracker> mru_window_tracker_; 680 std::unique_ptr<MruWindowTracker> mru_window_tracker_;
676 std::unique_ptr<ui::UserActivityDetector> user_activity_detector_; 681 std::unique_ptr<ui::UserActivityDetector> user_activity_detector_;
677 std::unique_ptr<VideoDetector> video_detector_; 682 std::unique_ptr<VideoDetector> video_detector_;
678 std::unique_ptr<WindowCycleController> window_cycle_controller_; 683 std::unique_ptr<WindowCycleController> window_cycle_controller_;
679 std::unique_ptr<WindowSelectorController> window_selector_controller_; 684 std::unique_ptr<WindowSelectorController> window_selector_controller_;
680 std::unique_ptr<FocusCycler> focus_cycler_; 685 std::unique_ptr<FocusCycler> focus_cycler_;
681 std::unique_ptr<WindowTreeHostManager> window_tree_host_manager_; 686 std::unique_ptr<WindowTreeHostManager> window_tree_host_manager_;
682 std::unique_ptr<HighContrastController> high_contrast_controller_; 687 std::unique_ptr<HighContrastController> high_contrast_controller_;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 bool in_mus_ = false; 779 bool in_mus_ = false;
775 780
776 std::unique_ptr<KeyboardUI> keyboard_ui_; 781 std::unique_ptr<KeyboardUI> keyboard_ui_;
777 782
778 DISALLOW_COPY_AND_ASSIGN(Shell); 783 DISALLOW_COPY_AND_ASSIGN(Shell);
779 }; 784 };
780 785
781 } // namespace ash 786 } // namespace ash
782 787
783 #endif // ASH_SHELL_H_ 788 #endif // ASH_SHELL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698