| Index: ui/chromeos/touch_exploration_controller.cc
|
| diff --git a/ui/chromeos/touch_exploration_controller.cc b/ui/chromeos/touch_exploration_controller.cc
|
| index 166db54875ac56cf5bf33a2ca10e5ef311cb0b9c..c44b9a7203a592d24380a3e88ebe5751338914b9 100644
|
| --- a/ui/chromeos/touch_exploration_controller.cc
|
| +++ b/ui/chromeos/touch_exploration_controller.cc
|
| @@ -33,7 +33,6 @@ TouchExplorationController::TouchExplorationController(
|
| : root_window_(root_window),
|
| delegate_(delegate),
|
| state_(NO_FINGERS_DOWN),
|
| - event_handler_for_testing_(NULL),
|
| gesture_provider_(this),
|
| prev_state_(NO_FINGERS_DOWN),
|
| VLOG_on_(true) {
|
| @@ -609,10 +608,6 @@ void TouchExplorationController::OnTapTimerFired() {
|
| }
|
|
|
| void TouchExplorationController::DispatchEvent(ui::Event* event) {
|
| - if (event_handler_for_testing_) {
|
| - event_handler_for_testing_->OnEvent(event);
|
| - return;
|
| - }
|
| ui::EventDispatchDetails result ALLOW_UNUSED =
|
| root_window_->GetHost()->dispatcher()->OnEventFromSource(event);
|
| }
|
|
|