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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/widget.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/ui/widget.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/widget.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/widget.js
index 3b69a18b3e9c579bb3abd89273a53cfe29607702..da44a57141d66f9d36c3fee40248b9bf6987d31f 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/widget.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/widget.js
@@ -116,7 +116,7 @@ cvox.Widget.prototype.hide = function(opt_noSync) {
this.initialNode : this.initialNode.parentNode;
cvox.ApiImplementation.syncToNode(this.initialNode,
true,
- cvox.AbstractTts.QUEUE_MODE_QUEUE);
+ cvox.QueueMode.QUEUE);
}
this.active = false;

Powered by Google App Engine
This is Rietveld 408576698