| Index: chrome/browser/resources/chromeos/chromevox/common/composite_tts.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/common/composite_tts.js b/chrome/browser/resources/chromeos/chromevox/common/composite_tts.js
|
| index e7d19e5815fbc1e96397aabd445bb19b250ce62b..67037d688b03823788eba77a72dca5247c453b8e 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/common/composite_tts.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/common/composite_tts.js
|
| @@ -40,8 +40,8 @@ cvox.CompositeTts.prototype.add = function(tts) {
|
| /**
|
| * @override
|
| */
|
| -cvox.CompositeTts.prototype.speak =
|
| - function(textString, queueMode, properties) {
|
| +cvox.CompositeTts.prototype.speak = function(
|
| + textString, queueMode, properties) {
|
| this.ttsEngines_.forEach(function(engine) {
|
| engine.speak(textString, queueMode, properties);
|
| });
|
| @@ -83,8 +83,8 @@ cvox.CompositeTts.prototype.addCapturingEventListener = function(listener) {
|
| /**
|
| * @override
|
| */
|
| -cvox.CompositeTts.prototype.increaseOrDecreaseProperty =
|
| - function(propertyName, increase) {
|
| +cvox.CompositeTts.prototype.increaseOrDecreaseProperty = function(
|
| + propertyName, increase) {
|
| this.ttsEngines_.forEach(function(engine) {
|
| engine.increaseOrDecreaseProperty(propertyName, increase);
|
| });
|
|
|