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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/common/command_store.js

Issue 2108963003: Initial draft of ChromeVox Next tutorial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switched to use showNextUpdatePage Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 5
6 /** 6 /**
7 * @fileoverview This class acts as the persistent store for all static data 7 * @fileoverview This class acts as the persistent store for all static data
8 * about commands. 8 * about commands.
9 * 9 *
10 * This store can safely be used within either a content or background script 10 * This store can safely be used within either a content or background script
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 disallowContinuation: true, 356 disallowContinuation: true,
357 msgId: 'show_options_page', 357 msgId: 'show_options_page',
358 'disallowOOBE': true, 358 'disallowOOBE': true,
359 category: 'help_commands'}, 359 category: 'help_commands'},
360 'showKbExplorerPage': {announce: false, 360 'showKbExplorerPage': {announce: false,
361 disallowContinuation: true, 361 disallowContinuation: true,
362 msgId: 'show_kb_explorer_page', 362 msgId: 'show_kb_explorer_page',
363 'disallowOOBE': true, 363 'disallowOOBE': true,
364 category: 'help_commands'}, 364 category: 'help_commands'},
365 365
366
367 'showFormsList': {announce: false, 366 'showFormsList': {announce: false,
368 disallowContinuation: true, 367 disallowContinuation: true,
369 nodeList: 'formField', 368 nodeList: 'formField',
370 msgId: 'show_forms_list', 369 msgId: 'show_forms_list',
371 category: 'overview'}, 370 category: 'overview'},
372 'showHeadingsList': {announce: false, nodeList: 'heading', 371 'showHeadingsList': {announce: false, nodeList: 'heading',
373 disallowContinuation: true, 372 disallowContinuation: true,
374 msgId: 'show_headings_list', 373 msgId: 'show_headings_list',
375 category: 'overview'}, 374 category: 'overview'},
376 'showLandmarksList': {announce: false, nodeList: 'landmark', 375 'showLandmarksList': {announce: false, nodeList: 'landmark',
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 'media': {predicate: 'mediaPredicate', 781 'media': {predicate: 'mediaPredicate',
783 forwardError: 'no_next_media_widget', 782 forwardError: 'no_next_media_widget',
784 backwardError: 'no_previous_media_widget'}, 783 backwardError: 'no_previous_media_widget'},
785 'section': {predicate: 'sectionPredicate', 784 'section': {predicate: 'sectionPredicate',
786 forwardError: 'no_next_section', 785 forwardError: 'no_next_section',
787 backwardError: 'no_previous_section'}, 786 backwardError: 'no_previous_section'},
788 'control': {predicate: 'controlPredicate', 787 'control': {predicate: 'controlPredicate',
789 forwardError: 'no_next_control', 788 forwardError: 'no_next_control',
790 backwardError: 'no_previous_control'} 789 backwardError: 'no_previous_control'}
791 }; 790 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698