| Index: third_party/WebKit/Source/core/input/EventHandler.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| index e5213ef6d9d7276b98412f25192212e9c4bf0fb1..b6f6f1906bf2b2463ed391c9a749179dc3650055 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| @@ -1406,7 +1406,7 @@ bool EventHandler::isScrollbarHandlingGestures() const {
|
|
|
| bool EventHandler::shouldApplyTouchAdjustment(
|
| const WebGestureEvent& event) const {
|
| - if (m_frame->settings() && !m_frame->settings()->touchAdjustmentEnabled())
|
| + if (m_frame->settings() && !m_frame->settings()->GetTouchAdjustmentEnabled())
|
| return false;
|
| return !event.tapAreaInRootFrame().isEmpty();
|
| }
|
| @@ -1882,7 +1882,7 @@ WebInputEventResult EventHandler::sendContextMenuEventForKey(
|
| // The contextmenu event is a mouse event even when invoked using the
|
| // keyboard. This is required for web compatibility.
|
| PlatformEvent::EventType eventType = PlatformEvent::MousePressed;
|
| - if (m_frame->settings() && m_frame->settings()->showContextMenuOnMouseUp())
|
| + if (m_frame->settings() && m_frame->settings()->GetShowContextMenuOnMouseUp())
|
| eventType = PlatformEvent::MouseReleased;
|
|
|
| PlatformMouseEvent mouseEvent(
|
|
|