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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js

Issue 604423002: Use an enum for ChromeVox queue mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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/navigation_speaker.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js
index 3308de6c124bcaba3e890f20d3852dbc75cac414..70cac8d1d2608cf82b517dfa317099d088ef9c01 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js
@@ -63,7 +63,7 @@ cvox.NavigationSpeaker.prototype.speakDescriptionArray = function(
}
};
var endCallbackHelper = function() {
- speakDescriptionChain(i + 1, cvox.AbstractTts.QUEUE_MODE_QUEUE, id);
+ speakDescriptionChain(i + 1, cvox.QueueMode.QUEUE, id);
};
var endCallback = function() {
// We process content-script specific properties here for now.

Powered by Google App Engine
This is Rietveld 408576698