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

Unified Diff: ash/common/accelerators/accelerator_router.h

Issue 2171983002: Move processing out of AcceleratorDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wire_up_controller
Patch Set: feedback 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/aura/wm_window_aura.cc ('k') | ash/common/accelerators/accelerator_router.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/accelerators/accelerator_router.h
diff --git a/ash/common/accelerators/accelerator_router.h b/ash/common/accelerators/accelerator_router.h
new file mode 100644
index 0000000000000000000000000000000000000000..048145f8f9fdbafe9b08315c16b0adad52fdd049
--- /dev/null
+++ b/ash/common/accelerators/accelerator_router.h
@@ -0,0 +1,49 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef ASH_ACCELERATORS_ACCELERATOR_ROUTER_H_
+#define ASH_ACCELERATORS_ACCELERATOR_ROUTER_H_
+
+#include "ash/ash_export.h"
+#include "base/macros.h"
+
+namespace ui {
+class Accelerator;
+class KeyEvent;
+}
+
+namespace ash {
+
+class WmWindow;
+
+// AcceleratorRouter does a minimal amount of processing before routing the
+// accelerator to the AcceleratorController. AcceleratorRouter may also decide
+// not to process certain accelerators.
+class ASH_EXPORT AcceleratorRouter {
+ public:
+ AcceleratorRouter();
+ ~AcceleratorRouter();
+
+ // Returns true if event should be consumed. |target| is the target of the
+ // event.
+ bool ProcessAccelerator(WmWindow* target,
+ const ui::KeyEvent& event,
+ const ui::Accelerator& accelerator);
+
+ private:
+ // Returns true if the window should be allowed a chance to handle
+ // system keys.
+ bool CanConsumeSystemKeys(WmWindow* target, const ui::KeyEvent& event);
+
+ // Returns true if the |accelerator| should be processed now.
+ bool ShouldProcessAcceleratorNow(WmWindow* target,
+ const ui::KeyEvent& event,
+ const ui::Accelerator& accelerator);
+
+ DISALLOW_COPY_AND_ASSIGN(AcceleratorRouter);
+};
+
+} // namespace ash
+
+#endif // ASH_ACCELERATORS_ACCELERATOR_ROUTER_H_
« no previous file with comments | « ash/aura/wm_window_aura.cc ('k') | ash/common/accelerators/accelerator_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698