| Index: Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| diff --git a/Source/WebKit/chromium/src/WebSettingsImpl.cpp b/Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| index b42196a6772cc44f0ad5836edf22f537b621276f..f04878b5dce83481589b6523c2433054af04930c 100644
|
| --- a/Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| +++ b/Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| @@ -158,20 +158,12 @@ void WebSettingsImpl::setAutoZoomFocusedNodeToLegibleScale(bool autoZoomFocusedN
|
|
|
| void WebSettingsImpl::setTextAutosizingEnabled(bool enabled)
|
| {
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| m_settings->setTextAutosizingEnabled(enabled);
|
| -#else
|
| - UNUSED_PARAM(enabled);
|
| -#endif
|
| }
|
|
|
| void WebSettingsImpl::setTextAutosizingFontScaleFactor(float fontScaleFactor)
|
| {
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| m_settings->setTextAutosizingFontScaleFactor(fontScaleFactor);
|
| -#else
|
| - UNUSED_PARAM(fontScaleFactor);
|
| -#endif
|
| }
|
|
|
| void WebSettingsImpl::setDefaultTextEncodingName(const WebString& encoding)
|
|
|