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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/user_commands.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/chromevox/injected/user_commands.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/user_commands.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/user_commands.js
index 1d5838ac1ab95db40bfa834f45881d105f5f0ca8..70c23884d20c2156133fd6dc74e02b23c56bccac 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/user_commands.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/user_commands.js
@@ -325,7 +325,7 @@ cvox.ChromeVoxUserCommands.doCommand_ = function(cmdStruct) {
cvox.ChromeVox.navigationManager.saveSel();
prefixMsg = wrap;
cvox.ChromeVox.navigationManager.syncToBeginning();
- cvox.ChromeVox.earcons.playEarcon(cvox.AbstractEarcons.WRAP);
+ cvox.ChromeVox.earcons.playEarcon(cvox.Earcon.WRAP);
found = cvox.ChromeVox.navigationManager.findNext(
predicate, predicateName, true);
if (!found) {

Powered by Google App Engine
This is Rietveld 408576698