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

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

Issue 2054473003: Implement update notifications for ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test. Created 4 years, 6 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/background/background.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/background.js b/chrome/browser/resources/chromeos/chromevox/chromevox/background/background.js
index 7d99c8d5223814775bd1d3645b80b56cc4355854..bfe563eb19a1e4c2efcd4086a17d8ad5199eddde 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/background.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/background.js
@@ -431,10 +431,8 @@ cvox.ChromeVoxBackground.prototype.addBridgeListener = function() {
console.log(err);
}
break;
- case 'toggleChromeVoxVersion':
- if (global.backgroundObj) {
- global.backgroundObj.onGotCommand('toggleChromeVoxVersion', true);
- }
+ case 'next':
+ global.backgroundObj.onGotCommand(action, true);
break;
}
}, this));

Powered by Google App Engine
This is Rietveld 408576698