Chromium Code Reviews| Index: Source/web/WebSettingsImpl.cpp |
| diff --git a/Source/web/WebSettingsImpl.cpp b/Source/web/WebSettingsImpl.cpp |
| index 1835d22772ea351290fb9773da060d1aa777f457..86a49d3711cf53521719ec226a11343015093398 100644 |
| --- a/Source/web/WebSettingsImpl.cpp |
| +++ b/Source/web/WebSettingsImpl.cpp |
| @@ -164,6 +164,16 @@ void WebSettingsImpl::setAccessibilityFontScaleFactor(float fontScaleFactor) |
| m_settings->setAccessibilityFontScaleFactor(fontScaleFactor); |
| } |
| +void WebSettingsImpl::setAccessibilityEnabled(bool enabled) |
| +{ |
| + m_settings->setAccessibilityEnabled(enabled); |
| +} |
| + |
| +void WebSettingsImpl::setInlineTextBoxAccessibilityEnabled(bool enabled) |
| +{ |
| + m_settings->setInlineTextBoxAccessibilityEnabled(enabled); |
| +} |
|
abarth-chromium
2014/08/23 05:59:11
These are correct.
aboxhall
2014/08/27 15:26:33
Acknowledged.
|
| + |
| void WebSettingsImpl::setDeviceScaleAdjustment(float deviceScaleAdjustment) |
| { |
| m_inspectorController->setDeviceScaleAdjustment(deviceScaleAdjustment); |