| Index: ash/accelerators/key_hold_detector.cc
|
| diff --git a/ash/accelerators/key_hold_detector.cc b/ash/accelerators/key_hold_detector.cc
|
| index 7d5d62ac066b0f051c7bf3de3c783b563d328685..475d55fbeb97861f29752b31fc07710047b7b267 100644
|
| --- a/ash/accelerators/key_hold_detector.cc
|
| +++ b/ash/accelerators/key_hold_detector.cc
|
| @@ -11,7 +11,7 @@
|
| #include "ui/aura/window_tracker.h"
|
| #include "ui/aura/window_tree_host.h"
|
| #include "ui/events/event_dispatcher.h"
|
| -#include "ui/events/event_processor.h"
|
| +#include "ui/events/event_sink.h"
|
|
|
| namespace ash {
|
| namespace {
|
| @@ -23,8 +23,7 @@ void DispatchPressedEvent(const ui::KeyEvent& key_event,
|
| return;
|
| ui::KeyEvent event(key_event);
|
| aura::Window* target = *(tracker->windows().begin());
|
| - ignore_result(
|
| - target->GetHost()->event_processor()->OnEventFromSource(&event));
|
| + ignore_result(target->GetHost()->event_sink()->OnEventFromSource(&event));
|
| }
|
|
|
| void PostPressedEvent(ui::KeyEvent* event) {
|
|
|