| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index c27108da8dd22d161e490f86b5de522c099a410d..24150f10fcc76a9bb4387ab40435d9ccf2b03726 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -52,7 +52,6 @@
|
| #include "ash/high_contrast/high_contrast_controller.h"
|
| #include "ash/host/ash_window_tree_host_init_params.h"
|
| #include "ash/ime/input_method_event_handler.h"
|
| -#include "ash/keyboard_uma_event_filter.h"
|
| #include "ash/magnifier/magnification_controller.h"
|
| #include "ash/magnifier/partial_magnification_controller.h"
|
| #include "ash/new_window_delegate.h"
|
| @@ -601,7 +600,6 @@ Shell::~Shell() {
|
| RemovePreTargetHandler(toplevel_window_event_handler_.get());
|
| RemovePostTargetHandler(toplevel_window_event_handler_.get());
|
| RemovePreTargetHandler(system_gesture_filter_.get());
|
| - RemovePreTargetHandler(keyboard_metrics_filter_.get());
|
| RemovePreTargetHandler(mouse_cursor_filter_.get());
|
| RemovePreTargetHandler(modality_filter_.get());
|
|
|
| @@ -899,9 +897,6 @@ void Shell::Init(const ShellInitParams& init_params) {
|
| system_gesture_filter_.reset(new SystemGestureEventFilter);
|
| AddPreTargetHandler(system_gesture_filter_.get());
|
|
|
| - keyboard_metrics_filter_.reset(new KeyboardUMAEventFilter);
|
| - AddPreTargetHandler(keyboard_metrics_filter_.get());
|
| -
|
| #if defined(OS_CHROMEOS)
|
| sticky_keys_controller_.reset(new StickyKeysController);
|
| #endif
|
|
|