summaryrefslogtreecommitdiffstats
path: root/ash/shell.cc
diff options
context:
space:
mode:
authorpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-06 19:33:30 +0000
committerpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-06 19:33:30 +0000
commit3f423f4c0be15c6ef1942dda775e4f7dea1ad5da (patch)
treed613a399ab527f418ff0f0b0df51b8fcf7cff31a /ash/shell.cc
parent095ccd1da8f0929dc77b3a0a98865d8bee6badd4 (diff)
downloadchromium_src-3f423f4c0be15c6ef1942dda775e4f7dea1ad5da.zip
chromium_src-3f423f4c0be15c6ef1942dda775e4f7dea1ad5da.tar.gz
chromium_src-3f423f4c0be15c6ef1942dda775e4f7dea1ad5da.tar.bz2
Implements accelerator handling for menus on aura.
BUG=105964 TEST=Manual Review URL: https://chromiumcodereview.appspot.com/9224001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell.cc')
-rw-r--r--ash/shell.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ash/shell.cc b/ash/shell.cc
index b1203bc..6f506bf 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -8,6 +8,7 @@
#include "ash/accelerators/accelerator_controller.h"
#include "ash/accelerators/accelerator_filter.h"
+#include "ash/accelerators/nested_dispatcher_controller.h"
#include "ash/app_list/app_list.h"
#include "ash/ash_switches.h"
#include "ash/drag_drop/drag_drop_controller.h"
@@ -187,6 +188,7 @@ Shell* Shell::instance_ = NULL;
Shell::Shell(ShellDelegate* delegate)
: ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)),
+ nested_dispatcher_controller_(new NestedDispatcherController),
accelerator_controller_(new AcceleratorController),
delegate_(delegate),
window_mode_(MODE_OVERLAPPING),