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

Unified 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 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 46548742f7fd9c2f528090b47c2dd9f35d4b5b8e..7bb9e4a3d99f1d0da8d74c55d6f539dc277a10b7 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -111,6 +111,7 @@ class MediaDelegate;
class MouseCursorEventFilter;
class MruWindowTracker;
class NewWindowDelegate;
+class OpenWithMenuController;
class OverlayEventFilter;
class PartialMagnificationController;
class PartialScreenshotController;
@@ -354,6 +355,9 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
DesktopBackgroundController* desktop_background_controller() {
return desktop_background_controller_.get();
}
+ OpenWithMenuController* open_with_menu_controller() {
+ return open_with_menu_controller_.get();
+ }
PowerButtonController* power_button_controller() {
return power_button_controller_.get();
}
@@ -670,6 +674,7 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
std::unique_ptr<::wm::WindowModalityController> window_modality_controller_;
std::unique_ptr<views::corewm::TooltipController> tooltip_controller_;
std::unique_ptr<DesktopBackgroundController> desktop_background_controller_;
+ std::unique_ptr<OpenWithMenuController> open_with_menu_controller_;
std::unique_ptr<PowerButtonController> power_button_controller_;
std::unique_ptr<LockStateController> lock_state_controller_;
std::unique_ptr<MruWindowTracker> mru_window_tracker_;

Powered by Google App Engine
This is Rietveld 408576698