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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/overlay_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/overlay_widget.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/overlay_widget.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/overlay_widget.js
index 8752b375cc2b7e20a3c26bc65b8aa5e43184902d..d40c7af406b9e4b94cd4fd4f588ec8df7e11fa48 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/overlay_widget.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/overlay_widget.js
@@ -77,6 +77,7 @@ cvox.OverlayWidget.prototype.onKeyDown = function(evt) {
}
this.onNavigate();
cvox.ChromeVox.navigationManager.speakDescriptionArray(
- cvox.ChromeVox.navigationManager.getDescription(), 0, null);
+ cvox.ChromeVox.navigationManager.getDescription(),
+ cvox.QueueMode.FLUSH, null);
}
};

Powered by Google App Engine
This is Rietveld 408576698