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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.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/chromevox/injected/initial_speech.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js
index fa1fcf63f9fcdb251ecaae8484e1331906046f95..6bfac70b9ff2250c153efef7bf5f9e8e65da3678 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/initial_speech.js
@@ -48,15 +48,13 @@ cvox.InitialSpeech.speak = function() {
}
if (title && !disableSpeak) {
- cvox.ChromeVox.tts.speak(
- title, cvox.QueueMode.FLUSH);
+ cvox.ChromeVox.tts.speak(title, cvox.QueueMode.FLUSH);
}
cvox.BrailleOverlayWidget.getInstance().init();
}
// Initialize live regions and speak alerts.
- cvox.LiveRegions.init(
- new Date(), cvox.QueueMode.QUEUE, disableSpeak);
+ cvox.LiveRegions.init(new Date(), cvox.QueueMode.QUEUE, disableSpeak);
// If our activeElement is on body, try to sync to the first element. This
// actually happens inside of NavigationManager.reset, which doesn't get

Powered by Google App Engine
This is Rietveld 408576698