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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (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/host/chrome/classic_earcons.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js
index f08997986a4fc8a52d313d84ff2d7e6448546f81..707e1ff731140a7d7182ae5aee9e0d992ede1c7c 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/classic_earcons.js
@@ -58,8 +58,8 @@ cvox.ClassicEarcons.prototype.playEarcon = function(earcon, opt_location) {
this.currentAudio = this.audioMap[earcon];
if (!this.currentAudio) {
- this.currentAudio = new Audio(chrome.extension.getURL(this.getBaseUrl() +
- earcon + '.ogg'));
+ this.currentAudio =
+ new Audio(chrome.extension.getURL(this.getBaseUrl() + earcon + '.ogg'));
this.audioMap[earcon] = this.currentAudio;
}
try {

Powered by Google App Engine
This is Rietveld 408576698