| 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 disallowContinuation: true, | 343 disallowContinuation: true, |
| 344 msgId: 'show_power_key', | 344 msgId: 'show_power_key', |
| 345 category: 'help_commands'}, | 345 category: 'help_commands'}, |
| 346 'help': {announce: false, | 346 'help': {announce: false, |
| 347 msgId: 'help', | 347 msgId: 'help', |
| 348 'disallowOOBE': true, | 348 'disallowOOBE': true, |
| 349 disallowContinuation: true, | 349 disallowContinuation: true, |
| 350 category: 'help_commands'}, | 350 category: 'help_commands'}, |
| 351 'contextMenu': {announce: false, | 351 'contextMenu': {announce: false, |
| 352 msgId: 'show_context_menu', | 352 msgId: 'show_context_menu', |
| 353 disallowContinuation: true}, | 353 disallowContinuation: true, |
| 354 category: 'information'}, |
| 354 | 355 |
| 355 'showOptionsPage': {announce: false, | 356 'showOptionsPage': {announce: false, |
| 356 disallowContinuation: true, | 357 disallowContinuation: true, |
| 357 msgId: 'show_options_page', | 358 msgId: 'show_options_page', |
| 358 'disallowOOBE': true, | 359 'disallowOOBE': true, |
| 359 category: 'help_commands'}, | 360 category: 'help_commands'}, |
| 360 'showKbExplorerPage': {announce: false, | 361 'showKbExplorerPage': {announce: false, |
| 361 disallowContinuation: true, | 362 disallowContinuation: true, |
| 362 msgId: 'show_kb_explorer_page', | 363 msgId: 'show_kb_explorer_page', |
| 363 'disallowOOBE': true, | 364 'disallowOOBE': true, |
| 364 category: 'help_commands'}, | 365 category: 'help_commands'}, |
| 365 'toggleBrailleCaptions': {announce: false, | 366 'toggleBrailleCaptions': {announce: false, |
| 366 msgId: 'braille_captions', | 367 msgId: 'braille_captions', |
| 367 category: 'help_commands'}, | 368 category: 'help_commands'}, |
| 369 'reportIssue': {announce: false, |
| 370 msgId: 'panel_menu_item_report_issue', |
| 371 category: 'help_commands'}, |
| 368 | 372 |
| 369 'showFormsList': {announce: false, | 373 'showFormsList': {announce: false, |
| 370 disallowContinuation: true, | 374 disallowContinuation: true, |
| 371 nodeList: 'formField', | 375 nodeList: 'formField', |
| 372 msgId: 'show_forms_list', | 376 msgId: 'show_forms_list', |
| 373 category: 'overview'}, | 377 category: 'overview'}, |
| 374 'showHeadingsList': {announce: false, nodeList: 'heading', | 378 'showHeadingsList': {announce: false, nodeList: 'heading', |
| 375 disallowContinuation: true, | 379 disallowContinuation: true, |
| 376 msgId: 'show_headings_list', | 380 msgId: 'show_headings_list', |
| 377 category: 'overview'}, | 381 category: 'overview'}, |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 'media': {predicate: 'mediaPredicate', | 785 'media': {predicate: 'mediaPredicate', |
| 782 forwardError: 'no_next_media_widget', | 786 forwardError: 'no_next_media_widget', |
| 783 backwardError: 'no_previous_media_widget'}, | 787 backwardError: 'no_previous_media_widget'}, |
| 784 'section': {predicate: 'sectionPredicate', | 788 'section': {predicate: 'sectionPredicate', |
| 785 forwardError: 'no_next_section', | 789 forwardError: 'no_next_section', |
| 786 backwardError: 'no_previous_section'}, | 790 backwardError: 'no_previous_section'}, |
| 787 'control': {predicate: 'controlPredicate', | 791 'control': {predicate: 'controlPredicate', |
| 788 forwardError: 'no_next_control', | 792 forwardError: 'no_next_control', |
| 789 backwardError: 'no_previous_control'} | 793 backwardError: 'no_previous_control'} |
| 790 }; | 794 }; |
| OLD | NEW |