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

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

Issue 2079073002: Make ChromeVox Next a setting in options page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: m 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/cvox2/background/panel.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js
index b525f444a78109543e0277ba061cc590cd5c99c2..85c209bbfc43a582ed7fd3a448869381ef2fc47a 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.js
@@ -296,7 +296,8 @@ Panel.onOpenMenus = function(opt_event, opt_activateMenuTitle) {
binding.keySeq,
function() {
var bkgnd =
- chrome.extension.getBackgroundPage()['global']['backgroundObj'];
+ chrome.extension.
+ getBackgroundPage()['ChromeVoxState']['instance'];
bkgnd['onGotCommand'](binding.command);
});
}
@@ -544,7 +545,7 @@ Panel.onSearchInputBlur = function() {
*/
Panel.onOptions = function() {
var bkgnd =
- chrome.extension.getBackgroundPage()['global']['backgroundObj'];
+ chrome.extension.getBackgroundPage()['ChromeVoxState']['instance'];
bkgnd['showOptionsPage']();
window.location = '#';
};
@@ -575,7 +576,7 @@ Panel.closeMenusAndRestoreFocus = function() {
window.location = '#';
var bkgnd =
- chrome.extension.getBackgroundPage()['global']['backgroundObj'];
+ chrome.extension.getBackgroundPage()['ChromeVoxState']['instance'];
bkgnd['endExcursion'](Panel.pendingCallback_);
};

Powered by Google App Engine
This is Rietveld 408576698