| Index: third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| diff --git a/third_party/WebKit/Source/web/PageWidgetDelegate.cpp b/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| index e16d29ea8b0d5fc3041af772c21c477136107d12..25856e23fe6cfad08df78e14bed69f874ce1013b 100644
|
| --- a/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| +++ b/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
|
| @@ -116,8 +116,8 @@ WebInputEventResult PageWidgetDelegate::handleInputEvent(
|
| PageWidgetEventHandler& handler,
|
| const WebInputEvent& event,
|
| LocalFrame* root) {
|
| - if (event.modifiers & WebInputEvent::IsTouchAccessibility &&
|
| - WebInputEvent::isMouseEventType(event.type)) {
|
| + if (event.modifiers() & WebInputEvent::IsTouchAccessibility &&
|
| + WebInputEvent::isMouseEventType(event.type())) {
|
| PlatformMouseEventBuilder pme(root->view(),
|
| static_cast<const WebMouseEvent&>(event));
|
|
|
| @@ -136,7 +136,7 @@ WebInputEventResult PageWidgetDelegate::handleInputEvent(
|
| }
|
| }
|
|
|
| - switch (event.type) {
|
| + switch (event.type()) {
|
| // FIXME: WebKit seems to always return false on mouse events processing
|
| // methods. For now we'll assume it has processed them (as we are only
|
| // interested in whether keyboard events are processed).
|
|
|