Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(506)

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js

Issue 604423002: Use an enum for ChromeVox queue mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
index d17f1cc88c5b057f157a47912ccb5193546c36e8..ae4346bbe0b43f9e231bb8682fd07babb981ffc8 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/abstract_tts.js
@@ -420,28 +420,6 @@ cvox.AbstractTts.DEBUG = true;
/**
- * Speech queue mode that interrupts the current utterance.
- * @type {number}
- */
-cvox.AbstractTts.QUEUE_MODE_FLUSH = 0;
-
-
-/**
- * Speech queue mode that does not interrupt the current utterance.
- * @type {number}
- */
-cvox.AbstractTts.QUEUE_MODE_QUEUE = 1;
-
-
-/**
- * Speech queue mode that flushes all utterances of the same category
- * (as set by properties['category']).
- * @type {number}
- */
-cvox.AbstractTts.QUEUE_MODE_CATEGORY_FLUSH = 2;
-
-
-/**
* Character dictionary. These symbols are replaced with their human readable
* equivalents. This replacement only occurs for single character utterances.
* @type {Object.<string, string>}

Powered by Google App Engine
This is Rietveld 408576698