Index: ash/common/default_accessibility_delegate.cc |
diff --git a/ash/common/default_accessibility_delegate.cc b/ash/common/default_accessibility_delegate.cc |
index 6a1bd37b533a239a73267a72f67ba76ed05d9b29..0c21c052d71b747d6f801ddd1bb2f6f840d56696 100644 |
--- a/ash/common/default_accessibility_delegate.cc |
+++ b/ash/common/default_accessibility_delegate.cc |
@@ -96,6 +96,22 @@ bool DefaultAccessibilityDelegate::IsFocusHighlightEnabled() const { |
return focus_highligh_enabled_; |
} |
+void DefaultAccessibilityDelegate::SetStickyKeysEnabled(bool enabled) { |
+ sticky_keys_enabled_ = enabled; |
+} |
+ |
+bool DefaultAccessibilityDelegate::IsStickyKeysEnabled() const { |
+ return sticky_keys_enabled_; |
+} |
+ |
+void DefaultAccessibilityDelegate::SetTapDraggingEnabled(bool enabled) { |
+ tap_dragging_enabled_ = enabled; |
+} |
+ |
+bool DefaultAccessibilityDelegate::IsTapDraggingEnabled() const { |
+ return tap_dragging_enabled_; |
+} |
+ |
void DefaultAccessibilityDelegate::SetSelectToSpeakEnabled(bool enabled) { |
select_to_speak_enabled_ = enabled; |
} |