| Index: third_party/WebKit/Source/web/WebSettingsImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebSettingsImpl.cpp b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
|
| index 9af41745bafa81b72016a78c3c25ff11d7b61d33..c0901e0bfe9de86dd9f37ceab6f57311d0784eca 100644
|
| --- a/third_party/WebKit/Source/web/WebSettingsImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
|
| @@ -586,7 +586,7 @@ void WebSettingsImpl::setEnableTouchAdjustment(bool enabled) {
|
| }
|
|
|
| bool WebSettingsImpl::multiTargetTapNotificationEnabled() {
|
| - return m_settings->multiTargetTapNotificationEnabled();
|
| + return m_settings->GetMultiTargetTapNotificationEnabled();
|
| }
|
|
|
| void WebSettingsImpl::setMultiTargetTapNotificationEnabled(bool enabled) {
|
| @@ -594,11 +594,11 @@ void WebSettingsImpl::setMultiTargetTapNotificationEnabled(bool enabled) {
|
| }
|
|
|
| bool WebSettingsImpl::viewportEnabled() const {
|
| - return m_settings->viewportEnabled();
|
| + return m_settings->GetViewportEnabled();
|
| }
|
|
|
| bool WebSettingsImpl::viewportMetaEnabled() const {
|
| - return m_settings->viewportMetaEnabled();
|
| + return m_settings->GetViewportMetaEnabled();
|
| }
|
|
|
| bool WebSettingsImpl::doubleTapToZoomEnabled() const {
|
| @@ -606,7 +606,7 @@ bool WebSettingsImpl::doubleTapToZoomEnabled() const {
|
| }
|
|
|
| bool WebSettingsImpl::mockGestureTapHighlightsEnabled() const {
|
| - return m_settings->mockGestureTapHighlightsEnabled();
|
| + return m_settings->GetMockGestureTapHighlightsEnabled();
|
| }
|
|
|
| bool WebSettingsImpl::shrinksViewportContentToFit() const {
|
|
|