Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2937)

Unified Diff: Source/web/WebSettingsImpl.cpp

Issue 495763005: Switch to using accessibilityEnabled and inlineTextBoxAccessibilityEnabled from settings (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Make WebAXObject methods noops Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698