OLD | NEW |
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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 'showOptionsPage': {announce: false, | 355 'showOptionsPage': {announce: false, |
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 'toggleBrailleCaptions': {announce: false, |
| 366 msgId: 'braille_captions', |
| 367 category: 'help_commands'}, |
365 | 368 |
366 'showFormsList': {announce: false, | 369 'showFormsList': {announce: false, |
367 disallowContinuation: true, | 370 disallowContinuation: true, |
368 nodeList: 'formField', | 371 nodeList: 'formField', |
369 msgId: 'show_forms_list', | 372 msgId: 'show_forms_list', |
370 category: 'overview'}, | 373 category: 'overview'}, |
371 'showHeadingsList': {announce: false, nodeList: 'heading', | 374 'showHeadingsList': {announce: false, nodeList: 'heading', |
372 disallowContinuation: true, | 375 disallowContinuation: true, |
373 msgId: 'show_headings_list', | 376 msgId: 'show_headings_list', |
374 category: 'overview'}, | 377 category: 'overview'}, |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 category: 'braille'}, | 663 category: 'braille'}, |
661 'bottom': {backward: true, | 664 'bottom': {backward: true, |
662 announce: true, | 665 announce: true, |
663 msgId: 'braille_bottom', | 666 msgId: 'braille_bottom', |
664 category: 'braille'}, | 667 category: 'braille'}, |
665 | 668 |
666 // Developer commands. | 669 // Developer commands. |
667 'enableConsoleTts': {announce: false, | 670 'enableConsoleTts': {announce: false, |
668 msgId: 'enable_tts_log', | 671 msgId: 'enable_tts_log', |
669 category: 'developer'}, | 672 category: 'developer'}, |
670 'toggleBrailleCaptions': {announce: false, | |
671 msgId: 'braille_captions', | |
672 category: 'developer'}, | |
673 | 673 |
674 'startHistoryRecording': {announce: false}, | 674 'startHistoryRecording': {announce: false}, |
675 'stopHistoryRecording': {announce: false}, | 675 'stopHistoryRecording': {announce: false}, |
676 'autorunner': {announce: false}, | 676 'autorunner': {announce: false}, |
677 | 677 |
678 'debug': {announce: false}, | 678 'debug': {announce: false}, |
679 | 679 |
680 'nop': {announce: false} | 680 'nop': {announce: false} |
681 }; | 681 }; |
682 | 682 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
781 'media': {predicate: 'mediaPredicate', | 781 'media': {predicate: 'mediaPredicate', |
782 forwardError: 'no_next_media_widget', | 782 forwardError: 'no_next_media_widget', |
783 backwardError: 'no_previous_media_widget'}, | 783 backwardError: 'no_previous_media_widget'}, |
784 'section': {predicate: 'sectionPredicate', | 784 'section': {predicate: 'sectionPredicate', |
785 forwardError: 'no_next_section', | 785 forwardError: 'no_next_section', |
786 backwardError: 'no_previous_section'}, | 786 backwardError: 'no_previous_section'}, |
787 'control': {predicate: 'controlPredicate', | 787 'control': {predicate: 'controlPredicate', |
788 forwardError: 'no_next_control', | 788 forwardError: 'no_next_control', |
789 backwardError: 'no_previous_control'} | 789 backwardError: 'no_previous_control'} |
790 }; | 790 }; |
OLD | NEW |