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

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

Issue 1306773003: Make earcon ids strings instead of numbers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_unused_earcons
Patch Set: Fixed test Created 5 years, 4 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/testing/earcons.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/testing/earcons.js b/chrome/browser/resources/chromeos/chromevox/host/testing/earcons.js
index 356e7252737aafb6ddfd467c4e9d103d03270d56..c2a2658c3f6c66df43fa731d1c219c81d98b410f 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/testing/earcons.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/testing/earcons.js
@@ -17,7 +17,7 @@ goog.require('cvox.HostFactory');
* @extends {cvox.AbstractEarcons}
*/
cvox.TestEarcons = function() {
- cvox.AbstractEarcons.call(this);
+ cvox.Earcon.call(this);
};
goog.inherits(cvox.TestEarcons, cvox.AbstractEarcons);

Powered by Google App Engine
This is Rietveld 408576698