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 8528137be78d62099bd41ce4e6b038e9d3fdd890..d11427c54204c8bfeb3f3065681e18a46c801cac 100644 |
--- a/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp |
@@ -453,9 +453,10 @@ class EventTestPlugin : public FakeWebPlugin { |
: FakeWebPlugin(frame, params), |
m_lastEventType(WebInputEvent::Undefined) {} |
- WebInputEventResult handleInputEvent(const WebInputEvent& event, |
- WebCursorInfo&) override { |
- m_lastEventType = event.type; |
+ WebInputEventResult handleInputEvent( |
+ const CoalescedWebInputEvent& coalescedEvent, |
+ WebCursorInfo&) override { |
+ m_lastEventType = coalescedEvent.event().type; |
return WebInputEventResult::HandledSystem; |
} |
WebInputEvent::Type getLastInputEventType() { return m_lastEventType; } |