Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/common/command_store.js

Issue 2703663002: Display images in multiline Braille (Closed)
Patch Set: Final feedback Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698