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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/composite_tts.js

Issue 2943193002: Run clang-format on .js files in c/b/r/chromeos/chromevox (Closed)
Patch Set: Created 3 years, 6 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/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);
});

Powered by Google App Engine
This is Rietveld 408576698