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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js

Issue 656813002: Support running ChromeVox in uncompressed mode and compress ChromeVox next by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Address nits. Created 6 years, 2 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/cvox2/background/background.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
index 519f24a811e08977b535b565327dffe1588aa25b..05d2b47c9ffc3d97b65ed5c5679c5f6d781f3897 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
@@ -286,7 +286,7 @@ cvox2.Background.prototype = {
chrome.tabs.query({active: true}, function(tabs) {
if (opt_options.classic) {
- cvox.ChromeVox.injectChromeVoxIntoTabs(tabs, true);
+ cvox.ChromeVox.injectChromeVoxIntoTabs(tabs);
} else {
tabs.forEach(function(tab) {
this.disableClassicChromeVox_(tab.id);

Powered by Google App Engine
This is Rietveld 408576698