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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 category: 'modifier_keys'}, | 146 category: 'modifier_keys'}, |
147 | 147 |
148 'stopSpeech': {announce: false, | 148 'stopSpeech': {announce: false, |
149 disallowContinuation: true, | 149 disallowContinuation: true, |
150 doDefault: true, | 150 doDefault: true, |
151 msgId: 'stop_speech_key', | 151 msgId: 'stop_speech_key', |
152 category: 'controlling_speech'}, | 152 category: 'controlling_speech'}, |
153 'toggleChromeVox': {announce: false, | 153 'toggleChromeVox': {announce: false, |
154 platformFilter: cvox.PlatformFilter.WML, | 154 platformFilter: cvox.PlatformFilter.WML, |
155 msgId: 'toggle_chromevox_active', | 155 msgId: 'toggle_chromevox_active', |
156 category: 'controlling_speech'}, | 156 category: 'modifier_keys'}, |
157 'toggleChromeVoxVersion': {announce: false}, | 157 'toggleChromeVoxVersion': {announce: false}, |
| 158 'openChromeVoxMenus': {announce: false, |
| 159 msgId: 'menus_title'}, |
158 'decreaseTtsRate': {announce: false, | 160 'decreaseTtsRate': {announce: false, |
159 msgId: 'decrease_tts_rate', | 161 msgId: 'decrease_tts_rate', |
160 category: 'controlling_speech'}, | 162 category: 'controlling_speech'}, |
161 'increaseTtsRate': {announce: false, | 163 'increaseTtsRate': {announce: false, |
162 msgId: 'increase_tts_rate', | 164 msgId: 'increase_tts_rate', |
163 category: 'controlling_speech'}, | 165 category: 'controlling_speech'}, |
164 'decreaseTtsPitch': {announce: false, | 166 'decreaseTtsPitch': {announce: false, |
165 msgId: 'decrease_tts_pitch', | 167 msgId: 'decrease_tts_pitch', |
166 category: 'controlling_speech'}, | 168 category: 'controlling_speech'}, |
167 'increaseTtsPitch': {announce: false, | 169 'increaseTtsPitch': {announce: false, |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 'toggleKeyboardHelp': {announce: false, | 339 'toggleKeyboardHelp': {announce: false, |
338 disallowContinuation: true, | 340 disallowContinuation: true, |
339 msgId: 'show_power_key', | 341 msgId: 'show_power_key', |
340 category: 'help_commands'}, | 342 category: 'help_commands'}, |
341 'help': {announce: false, | 343 'help': {announce: false, |
342 msgId: 'help', | 344 msgId: 'help', |
343 'disallowOOBE': true, | 345 'disallowOOBE': true, |
344 disallowContinuation: true, | 346 disallowContinuation: true, |
345 category: 'help_commands'}, | 347 category: 'help_commands'}, |
346 'contextMenu': {announce: false, | 348 'contextMenu': {announce: false, |
| 349 msgId: 'show_context_menu', |
347 disallowContinuation: true}, | 350 disallowContinuation: true}, |
348 | 351 |
349 'showOptionsPage': {announce: false, | 352 'showOptionsPage': {announce: false, |
350 disallowContinuation: true, | 353 disallowContinuation: true, |
351 msgId: 'show_options_page', | 354 msgId: 'show_options_page', |
352 'disallowOOBE': true, | 355 'disallowOOBE': true, |
353 category: 'help_commands'}, | 356 category: 'help_commands'}, |
354 'showKbExplorerPage': {announce: false, | 357 'showKbExplorerPage': {announce: false, |
355 disallowContinuation: true, | 358 disallowContinuation: true, |
356 msgId: 'show_kb_explorer_page', | 359 msgId: 'show_kb_explorer_page', |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 'media': {predicate: 'mediaPredicate', | 779 'media': {predicate: 'mediaPredicate', |
777 forwardError: 'no_next_media_widget', | 780 forwardError: 'no_next_media_widget', |
778 backwardError: 'no_previous_media_widget'}, | 781 backwardError: 'no_previous_media_widget'}, |
779 'section': {predicate: 'sectionPredicate', | 782 'section': {predicate: 'sectionPredicate', |
780 forwardError: 'no_next_section', | 783 forwardError: 'no_next_section', |
781 backwardError: 'no_previous_section'}, | 784 backwardError: 'no_previous_section'}, |
782 'control': {predicate: 'controlPredicate', | 785 'control': {predicate: 'controlPredicate', |
783 forwardError: 'no_next_control', | 786 forwardError: 'no_next_control', |
784 backwardError: 'no_previous_control'} | 787 backwardError: 'no_previous_control'} |
785 }; | 788 }; |
OLD | NEW |