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

Unified Diff: ash/shell.h

Issue 2162193003: Separates out accelerators using non-common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@accelerators
Patch Set: sim=20 Created 4 years, 5 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
« no previous file with comments | « ash/display/display_manager_unittest.cc ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index bbb4e20bb69fa3672d052c2232da58451625cebf..dc73516515ffc4b5208b4551935de6f15bd0c9f5 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -80,6 +80,7 @@ class WindowModalityController;
namespace ash {
class AcceleratorController;
+class AcceleratorControllerDelegateAura;
class AppListController;
class AshNativeCursorManager;
class AutoclickController;
@@ -312,6 +313,9 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
AcceleratorController* accelerator_controller() {
return accelerator_controller_.get();
}
+ AcceleratorControllerDelegateAura* accelerator_controller_delegate() {
+ return accelerator_controller_delegate_.get();
+ }
DisplayManager* display_manager() { return display_manager_.get(); }
DisplayConfigurationController* display_configuration_controller() {
@@ -582,6 +586,8 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
std::vector<WindowAndBoundsPair> to_restore_;
std::unique_ptr<UserMetricsRecorder> user_metrics_recorder_;
+ std::unique_ptr<AcceleratorControllerDelegateAura>
+ accelerator_controller_delegate_;
std::unique_ptr<AcceleratorController> accelerator_controller_;
std::unique_ptr<UserWallpaperDelegate> user_wallpaper_delegate_;
std::unique_ptr<SessionStateDelegate> session_state_delegate_;
« no previous file with comments | « ash/display/display_manager_unittest.cc ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698