| Index: content/renderer/pepper/pepper_webplugin_impl.cc
|
| diff --git a/content/renderer/pepper/pepper_webplugin_impl.cc b/content/renderer/pepper/pepper_webplugin_impl.cc
|
| index 4b62d314f50ba1ea441130644a9047f155dc8b4f..1bda5021c97e1e11143d3afb4b55c8ebe0cf0b57 100644
|
| --- a/content/renderer/pepper/pepper_webplugin_impl.cc
|
| +++ b/content/renderer/pepper/pepper_webplugin_impl.cc
|
| @@ -21,6 +21,7 @@
|
| #include "content/renderer/render_frame_impl.h"
|
| #include "ppapi/shared_impl/ppapi_globals.h"
|
| #include "ppapi/shared_impl/var_tracker.h"
|
| +#include "third_party/WebKit/public/platform/WebCoalescedInputEvent.h"
|
| #include "third_party/WebKit/public/platform/WebPoint.h"
|
| #include "third_party/WebKit/public/platform/WebRect.h"
|
| #include "third_party/WebKit/public/platform/WebSize.h"
|
| @@ -206,11 +207,11 @@ void PepperWebPluginImpl::UpdateFocus(bool focused,
|
| void PepperWebPluginImpl::UpdateVisibility(bool visible) {}
|
|
|
| blink::WebInputEventResult PepperWebPluginImpl::HandleInputEvent(
|
| - const blink::WebInputEvent& event,
|
| + const blink::WebCoalescedInputEvent& coalesced_event,
|
| blink::WebCursorInfo& cursor_info) {
|
| if (instance_->FlashIsFullscreenOrPending())
|
| return blink::WebInputEventResult::kNotHandled;
|
| - return instance_->HandleInputEvent(event, &cursor_info)
|
| + return instance_->HandleCoalescedInputEvent(coalesced_event, &cursor_info)
|
| ? blink::WebInputEventResult::kHandledApplication
|
| : blink::WebInputEventResult::kNotHandled;
|
| }
|
|
|