| 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 bfc852193d6aa4dd9bebf87aed826a04aa198db8..09d47160423d185744628428df059eb7146149a6 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/console_tts.js
|
| @@ -32,9 +32,14 @@ cvox.ConsoleTts.prototype.speak = function(textString, queueMode, properties) {
|
| var logStr = 'Speak';
|
| if (queueMode == cvox.AbstractTts.QUEUE_MODE_FLUSH) {
|
| logStr += ' (I)';
|
| + } else if (queueMode == cvox.AbstractTts.QUEUE_MODE_CATEGORY_FLUSH) {
|
| + logStr += ' (C)';
|
| } else {
|
| logStr += ' (Q)';
|
| }
|
| + if (properties && properties.category) {
|
| + logStr += ' category=' + properties.category;
|
| + }
|
| logStr += ' "' + textString + '"';
|
| window['console']['log'](logStr);
|
|
|
|
|