| Index: Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| diff --git a/Source/WebKit/chromium/src/WebSettingsImpl.cpp b/Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| index e340bd01f1409a044709692d6298a30f687da974..c0b539c3842323ffd2b42c653611277ad2bde803 100644
|
| --- a/Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| +++ b/Source/WebKit/chromium/src/WebSettingsImpl.cpp
|
| @@ -159,20 +159,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)
|
|
|