Index: third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp |
diff --git a/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp b/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp |
index abe1920a61b5281abfb28d33ecd5d54b5904d720..1b32f730a7a9ae57055046e6a5b70e5b615b5f3d 100644 |
--- a/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp |
@@ -315,10 +315,10 @@ public: |
{ |
} |
- bool handleInputEvent(const WebInputEvent& event, WebCursorInfo&) override |
+ WebInputEventResult handleInputEvent(const WebInputEvent& event, WebCursorInfo&) override |
{ |
m_lastEventType = event.type; |
- return true; |
+ return WebInputEventResult::HandledSystem; |
} |
WebInputEvent::Type getLastInputEventType() {return m_lastEventType; } |