| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 msgId: 'braille_line_down', | 662 msgId: 'braille_line_down', |
| 663 category: 'braille'}, | 663 category: 'braille'}, |
| 664 'top': {forward: true, | 664 'top': {forward: true, |
| 665 announce: true, | 665 announce: true, |
| 666 msgId: 'braille_top', | 666 msgId: 'braille_top', |
| 667 category: 'braille'}, | 667 category: 'braille'}, |
| 668 'bottom': {backward: true, | 668 'bottom': {backward: true, |
| 669 announce: true, | 669 announce: true, |
| 670 msgId: 'braille_bottom', | 670 msgId: 'braille_bottom', |
| 671 category: 'braille'}, | 671 category: 'braille'}, |
| 672 'viewGraphicAsBraille': {announce: true, |
| 673 msgId: 'view_graphic_as_braille', |
| 674 category: 'braille'}, |
| 672 | 675 |
| 673 // Developer commands. | 676 // Developer commands. |
| 674 'enableConsoleTts': {announce: false, | 677 'enableConsoleTts': {announce: false, |
| 675 msgId: 'enable_tts_log', | 678 msgId: 'enable_tts_log', |
| 676 category: 'developer'}, | 679 category: 'developer'}, |
| 677 | 680 |
| 678 'startHistoryRecording': {announce: false}, | 681 'startHistoryRecording': {announce: false}, |
| 679 'stopHistoryRecording': {announce: false}, | 682 'stopHistoryRecording': {announce: false}, |
| 680 'autorunner': {announce: false}, | 683 'autorunner': {announce: false}, |
| 681 | 684 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 'media': {predicate: 'mediaPredicate', | 788 'media': {predicate: 'mediaPredicate', |
| 786 forwardError: 'no_next_media_widget', | 789 forwardError: 'no_next_media_widget', |
| 787 backwardError: 'no_previous_media_widget'}, | 790 backwardError: 'no_previous_media_widget'}, |
| 788 'section': {predicate: 'sectionPredicate', | 791 'section': {predicate: 'sectionPredicate', |
| 789 forwardError: 'no_next_section', | 792 forwardError: 'no_next_section', |
| 790 backwardError: 'no_previous_section'}, | 793 backwardError: 'no_previous_section'}, |
| 791 'control': {predicate: 'controlPredicate', | 794 'control': {predicate: 'controlPredicate', |
| 792 forwardError: 'no_next_control', | 795 forwardError: 'no_next_control', |
| 793 backwardError: 'no_previous_control'} | 796 backwardError: 'no_previous_control'} |
| 794 }; | 797 }; |
| OLD | NEW |