Index: chrome/browser/resources/chromeos/chromevox/host/interface/tts_interface.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/tts_interface.js b/chrome/browser/resources/chromeos/chromevox/host/interface/tts_interface.js |
index c575aa411d9b1e029c3c8e58cdf8de36f425f99b..efc98d7e7388c653bbb1255d7dce16e3a559c0e9 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/tts_interface.js |
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/tts_interface.js |
@@ -9,8 +9,23 @@ |
* |
*/ |
-goog.provide('cvox.TtsInterface'); |
goog.provide('cvox.TtsCapturingEventListener'); |
+goog.provide('cvox.TtsCategory'); |
+goog.provide('cvox.TtsInterface'); |
+ |
+/** |
+ * Categories for a speech utterance. This can be used with the |
+ * CATEGORY_FLUSH queue mode, which flushes all utterances from a given |
+ * category but not other utterances. |
+ * |
+ * NAV: speech related to explicit navigation, or focus changing. |
+ * |
+ * @enum {string} |
+ */ |
+cvox.TtsCategory = { |
+ LIVE: 'live', |
+ NAV: 'nav' |
+}; |
/** |
* @interface |