Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include <X11/Xlib.h> | |
|
oshima
2012/01/23 21:40:52
move this after accelerator_handler.h but before a
| |
| 6 | |
| 7 #include "ash/accelerators/accelerator_handler.h" | |
| 8 | |
| 9 #include "ash/accelerators/accelerator_controller.h" | |
| 10 #include "ash/shell.h" | |
| 11 #include "base/message_loop.h" | |
| 12 #include "base/message_pump_x.h" | |
| 13 #include "ui/aura/event.h" | |
| 14 #include "ui/base/accelerators/accelerator.h" | |
| 15 | |
| 16 namespace ash { | |
| 17 | |
| 18 namespace { | |
| 19 | |
| 20 const int kModifierMask = (ui::EF_SHIFT_DOWN | | |
| 21 ui::EF_CONTROL_DOWN | | |
| 22 ui::EF_ALT_DOWN); | |
| 23 } // namespace | |
|
oshima
2012/01/23 21:40:52
two spaces before //
| |
| 24 | |
| 25 base::MessagePumpDispatcher::DispatchStatus AcceleratorHandler::Dispatch( | |
| 26 XEvent* xev) { | |
| 27 if (xev->type == KeyPress) { | |
| 28 ash::AcceleratorController* accelerator_controller = | |
| 29 ash::Shell::GetInstance()->accelerator_controller(); | |
| 30 ui::Accelerator accelerator(ui::KeyboardCodeFromNative(xev), | |
| 31 ui::EventFlagsFromNative(xev) & kModifierMask); | |
| 32 if (accelerator_controller && accelerator_controller->Process(accelerator)) | |
| 33 return EVENT_PROCESSED; | |
| 34 } | |
| 35 return nested_dispatcher_->Dispatch(xev); | |
| 36 } | |
| 37 | |
| 38 } // namespace ash | |
|
oshima
2012/01/23 21:40:52
ditto
| |
| OLD | NEW |