| Index: ash/common/accessibility_delegate.h
|
| diff --git a/ash/common/accessibility_delegate.h b/ash/common/accessibility_delegate.h
|
| index 25c0665ca1129fe14ba03febec17b26795aee4fa..e7bc2de0492d347695faa4e1881ec54f9b18f360 100644
|
| --- a/ash/common/accessibility_delegate.h
|
| +++ b/ash/common/accessibility_delegate.h
|
| @@ -84,6 +84,18 @@ class ASH_EXPORT AccessibilityDelegate {
|
| // Returns if focus highlighting is enabled.
|
| virtual bool IsFocusHighlightEnabled() const = 0;
|
|
|
| + // Invoked to enable or disable sticky keys.
|
| + virtual void SetStickyKeysEnabled(bool enabled) = 0;
|
| +
|
| + // Returns if sticky keys is enabled.
|
| + virtual bool IsStickyKeysEnabled() const = 0;
|
| +
|
| + // Invoked to enable or disable tap dragging.
|
| + virtual void SetTapDraggingEnabled(bool enabled) = 0;
|
| +
|
| + // Returns if tap dragging is enabled.
|
| + virtual bool IsTapDraggingEnabled() const = 0;
|
| +
|
| // Invoked to enable or disable select-to-speak.
|
| virtual void SetSelectToSpeakEnabled(bool enabled) = 0;
|
|
|
|
|