| Index: chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js
|
| index 09d47160423d185744628428df059eb7146149a6..00abb033a1ca240a0f5df51f17e29389a0a00dfb 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js
|
| @@ -30,9 +30,9 @@ goog.addSingletonGetter(cvox.ConsoleTts);
|
| cvox.ConsoleTts.prototype.speak = function(textString, queueMode, properties) {
|
| if (this.enabled_ && window['console']) {
|
| var logStr = 'Speak';
|
| - if (queueMode == cvox.AbstractTts.QUEUE_MODE_FLUSH) {
|
| + if (queueMode == cvox.QueueMode.FLUSH) {
|
| logStr += ' (I)';
|
| - } else if (queueMode == cvox.AbstractTts.QUEUE_MODE_CATEGORY_FLUSH) {
|
| + } else if (queueMode == cvox.QueueMode.CATEGORY_FLUSH) {
|
| logStr += ' (C)';
|
| } else {
|
| logStr += ' (Q)';
|
|
|