| 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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 category: 'information'}, | 345 category: 'information'}, |
| 346 | 346 |
| 347 'undarkenScreen': { | 347 'undarkenScreen': { |
| 348 msgId: 'undarken_screen', | 348 msgId: 'undarken_screen', |
| 349 category: 'help_commands' | 349 category: 'help_commands' |
| 350 }, | 350 }, |
| 351 | 351 |
| 352 'darkenScreen': { | 352 'darkenScreen': { |
| 353 msgId: 'darken_screen', | 353 msgId: 'darken_screen', |
| 354 category: 'help_commands' | 354 category: 'help_commands' |
| 355 }, | 355 }, |
| 356 |
| 357 'toggleBrailleTable': { |
| 358 msgId: 'toggle_braille_table', |
| 359 category: 'help_commands' |
| 360 }, |
| 356 | 361 |
| 357 'toggleKeyboardHelp': {announce: false, | 362 'toggleKeyboardHelp': {announce: false, |
| 358 disallowContinuation: true, | 363 disallowContinuation: true, |
| 359 msgId: 'show_power_key', | 364 msgId: 'show_power_key', |
| 360 category: 'help_commands'}, | 365 category: 'help_commands'}, |
| 361 'help': {announce: false, | 366 'help': {announce: false, |
| 362 msgId: 'help', | 367 msgId: 'help', |
| 363 'disallowOOBE': true, | 368 'disallowOOBE': true, |
| 364 disallowContinuation: true, | 369 disallowContinuation: true, |
| 365 category: 'help_commands'}, | 370 category: 'help_commands'}, |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 'media': {predicate: 'mediaPredicate', | 808 'media': {predicate: 'mediaPredicate', |
| 804 forwardError: 'no_next_media_widget', | 809 forwardError: 'no_next_media_widget', |
| 805 backwardError: 'no_previous_media_widget'}, | 810 backwardError: 'no_previous_media_widget'}, |
| 806 'section': {predicate: 'sectionPredicate', | 811 'section': {predicate: 'sectionPredicate', |
| 807 forwardError: 'no_next_section', | 812 forwardError: 'no_next_section', |
| 808 backwardError: 'no_previous_section'}, | 813 backwardError: 'no_previous_section'}, |
| 809 'control': {predicate: 'controlPredicate', | 814 'control': {predicate: 'controlPredicate', |
| 810 forwardError: 'no_next_control', | 815 forwardError: 'no_next_control', |
| 811 backwardError: 'no_previous_control'} | 816 backwardError: 'no_previous_control'} |
| 812 }; | 817 }; |
| OLD | NEW |