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

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

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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 de97c9d5002c5b51bf8818a9d160b1d6d728f08a..4a34dd565fe2792ec36fa9e40dfaef0d34af920a 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
@@ -180,9 +180,12 @@ CommandHandler.onCommand = function(command) {
ChromeVoxState.instance.currentRange);
}
break;
- case 'showNextUpdatePage':
+ case 'help':
(new PanelCommand(PanelCommandType.TUTORIAL)).send();
return false;
+ case 'showNextUpdatePage':
+ (new PanelCommand(PanelCommandType.UPDATE_NOTES)).send();
+ return false;
default:
break;
}

Powered by Google App Engine
This is Rietveld 408576698