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

Unified Diff: Source/web/WebSettingsImpl.cpp

Issue 491483006: Add accessibilityEnabled and inlineTextBoxAccessiblityEnabled to Settings, but don't use them yet. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSettingsImpl.cpp
diff --git a/Source/web/WebSettingsImpl.cpp b/Source/web/WebSettingsImpl.cpp
index bcd622d3292ede49c2edc776cf05bc0a6ecbfe96..426968f1c1e460f41b2b82c6605f49e76464ef6d 100644
--- a/Source/web/WebSettingsImpl.cpp
+++ b/Source/web/WebSettingsImpl.cpp
@@ -171,6 +171,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);
+}
+
void WebSettingsImpl::setDeviceScaleAdjustment(float deviceScaleAdjustment)
{
m_inspectorController->setDeviceScaleAdjustment(deviceScaleAdjustment);
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698