Index: ash/magnifier/partial_magnification_controller.cc |
diff --git a/ash/magnifier/partial_magnification_controller.cc b/ash/magnifier/partial_magnification_controller.cc |
index cdabbf28463c97efdfdda471106d05f42713233c..2a4ab84ff88b3e461647ca9b4efd07c2d2b56e70 100644 |
--- a/ash/magnifier/partial_magnification_controller.cc |
+++ b/ash/magnifier/partial_magnification_controller.cc |
@@ -76,8 +76,7 @@ void PartialMagnificationController::SetEnabled(bool enabled) { |
//////////////////////////////////////////////////////////////////////////////// |
// PartialMagnificationController: ui::EventHandler implementation |
-ui::EventResult PartialMagnificationController::OnMouseEvent( |
- ui::MouseEvent* event) { |
+void PartialMagnificationController::OnMouseEvent(ui::MouseEvent* event) { |
if (IsPartialMagnified() && event->type() == ui::ET_MOUSE_MOVED) { |
aura::Window* target = static_cast<aura::Window*>(event->target()); |
aura::RootWindow* current_root = target->GetRootWindow(); |
@@ -91,8 +90,6 @@ ui::EventResult PartialMagnificationController::OnMouseEvent( |
OnMouseMove(event->root_location()); |
} |
} |
- |
- return ui::ER_UNHANDLED; |
} |
//////////////////////////////////////////////////////////////////////////////// |