| Index: Source/core/frame/Settings.cpp
|
| diff --git a/Source/core/frame/Settings.cpp b/Source/core/frame/Settings.cpp
|
| index d176663e4f90a778a3bc06596d0ea323871a4e7c..4b49146ace42b3fbba6b0df37bfbe8c141c4402e 100644
|
| --- a/Source/core/frame/Settings.cpp
|
| +++ b/Source/core/frame/Settings.cpp
|
| @@ -132,4 +132,13 @@ void Settings::setOpenGLMultisamplingEnabled(bool flag)
|
| invalidate(SettingsDelegate::MultisamplingChange);
|
| }
|
|
|
| +void Settings::setAccessibilityEnabled(bool flag)
|
| +{
|
| + if (m_accessibilityEnabled == flag)
|
| + return;
|
| +
|
| + m_accessibilityEnabled = flag;
|
| + invalidate(SettingsDelegate::AccessibilityStateChange);
|
| +}
|
| +
|
| } // namespace blink
|
|
|