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

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

Issue 2412433004: Recovery: Implement focus recovery across root AutomationNodes (Closed)
Patch Set: Address feedback. Created 4 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/command_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
index abeaf1eb730e362767afa39464a79b48a71dc9d7..e72e981b5c87cfdce44fadf75bea7c984aeb2113 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
@@ -472,27 +472,21 @@ CommandHandler.onCommand = function(command) {
}
break;
case 'toggleKeyboardHelp':
- ChromeVoxState.instance.startExcursion();
(new PanelCommand(PanelCommandType.OPEN_MENUS)).send();
return false;
case 'showHeadingsList':
- ChromeVoxState.instance.startExcursion();
(new PanelCommand(PanelCommandType.OPEN_MENUS, 'role_heading')).send();
return false;
case 'showFormsList':
- ChromeVoxState.instance.startExcursion();
(new PanelCommand(PanelCommandType.OPEN_MENUS, 'role_form')).send();
return false;
case 'showLandmarksList':
- ChromeVoxState.instance.startExcursion();
(new PanelCommand(PanelCommandType.OPEN_MENUS, 'role_landmark')).send();
return false;
case 'showLinksList':
- ChromeVoxState.instance.startExcursion();
(new PanelCommand(PanelCommandType.OPEN_MENUS, 'role_link')).send();
return false;
case 'showTablesList':
- ChromeVoxState.instance.startExcursion();
(new PanelCommand(PanelCommandType.OPEN_MENUS, 'table_strategy')).send();
return false;
case 'toggleSearchWidget':

Powered by Google App Engine
This is Rietveld 408576698