Index: ash/accessibility_delegate.h |
diff --git a/ash/accessibility_delegate.h b/ash/accessibility_delegate.h |
index b677cf9ecf424737a3bb3786de9b24ba6271f8be..0cd7f9f73799d8a53a915d7f0dece9b1956ba311 100644 |
--- a/ash/accessibility_delegate.h |
+++ b/ash/accessibility_delegate.h |
@@ -7,6 +7,7 @@ |
#include "ash/ash_export.h" |
#include "base/time/time.h" |
+#include "ui/accessibility/ax_enums.h" |
#include "ui/chromeos/accessibility_types.h" |
namespace ash { |
@@ -124,6 +125,10 @@ class ASH_EXPORT AccessibilityDelegate { |
// Initiates play of shutdown sound and returns it's duration. |
virtual base::TimeDelta PlayShutdownSound() const = 0; |
+ |
+ // Forward an accessibility gesture from the touch exploration controller |
+ // to ChromeVox. |
David Tseng
2016/05/05 22:30:38
nit: 'to' fits above.
dmazzoni
2016/05/06 19:06:08
Done.
|
+ virtual void HandleAccessibilityGesture(ui::AXGesture gesture) = 0; |
}; |
} // namespace ash |