Index: components/test_runner/test_plugin.cc |
diff --git a/components/test_runner/test_plugin.cc b/components/test_runner/test_plugin.cc |
index 76f608c96daa08340e0f724e3f554ca9e8526e30..33a489d046c029692db8be10c5710b76f37554ec 100644 |
--- a/components/test_runner/test_plugin.cc |
+++ b/components/test_runner/test_plugin.cc |
@@ -594,8 +594,9 @@ unsigned TestPlugin::LoadProgram(const std::string& vertex_source, |
return program; |
} |
-bool TestPlugin::handleInputEvent(const blink::WebInputEvent& event, |
- blink::WebCursorInfo& info) { |
+blink::WebInputEventResult TestPlugin::handleInputEvent( |
+ const blink::WebInputEvent& event, |
+ blink::WebCursorInfo& info) { |
const char* event_name = 0; |
switch (event.type) { |
case blink::WebInputEvent::Undefined: |
@@ -720,7 +721,7 @@ bool TestPlugin::handleInputEvent(const blink::WebInputEvent& event, |
"handling user gesture\n"); |
if (is_persistent_) |
delegate_->PrintMessage(std::string("TestPlugin: isPersistent\n")); |
- return false; |
+ return blink::WebInputEventResult::NotHandled; |
} |
bool TestPlugin::handleDragStatusUpdate( |