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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/earcon_engine.js

Issue 2917123002: Support role description in automation/ChromeVox (Closed)
Patch Set: Rebase. 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/cvox2/background/earcon_engine.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/earcon_engine.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/earcon_engine.js
index ae0d58a9a1e454753206aebc08f484ce11cdacf7..07c358182749f811aeb7ae4100c17a1585926a58 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/earcon_engine.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/earcon_engine.js
@@ -175,7 +175,7 @@ EarconEngine.prototype.loadSound = function(name, url) {
// Decode asynchronously.
request.onload = (function() {
this.context_.decodeAudioData(
- /** @type {ArrayBuffer} */ (request.response),
+ /** @type {!ArrayBuffer} */ (request.response),
(function(buffer) {
this.buffers_[name] = buffer;
}).bind(this));

Powered by Google App Engine
This is Rietveld 408576698