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

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

Issue 2079073002: Make ChromeVox Next a setting in options page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: m Created 4 years, 6 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
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: 'modifier_keys'}, 156 category: 'modifier_keys'},
157 'toggleChromeVoxVersion': {announce: false}, 157 'toggleChromeVoxVersion': {announce: false},
158 'showNextUpdatePage': {announce: false, 'category': 'help_commands'}, 158 'showNextUpdatePage': {
159 msgId: 'show_next_update_description',
160 announce: false, 'category': 'help_commands'},
159 'openChromeVoxMenus': {announce: false, 161 'openChromeVoxMenus': {announce: false,
160 msgId: 'menus_title'}, 162 msgId: 'menus_title'},
161 'decreaseTtsRate': {announce: false, 163 'decreaseTtsRate': {announce: false,
162 msgId: 'decrease_tts_rate', 164 msgId: 'decrease_tts_rate',
163 category: 'controlling_speech'}, 165 category: 'controlling_speech'},
164 'increaseTtsRate': {announce: false, 166 'increaseTtsRate': {announce: false,
165 msgId: 'increase_tts_rate', 167 msgId: 'increase_tts_rate',
166 category: 'controlling_speech'}, 168 category: 'controlling_speech'},
167 'decreaseTtsPitch': {announce: false, 169 'decreaseTtsPitch': {announce: false,
168 msgId: 'decrease_tts_pitch', 170 msgId: 'decrease_tts_pitch',
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 'media': {predicate: 'mediaPredicate', 782 'media': {predicate: 'mediaPredicate',
781 forwardError: 'no_next_media_widget', 783 forwardError: 'no_next_media_widget',
782 backwardError: 'no_previous_media_widget'}, 784 backwardError: 'no_previous_media_widget'},
783 'section': {predicate: 'sectionPredicate', 785 'section': {predicate: 'sectionPredicate',
784 forwardError: 'no_next_section', 786 forwardError: 'no_next_section',
785 backwardError: 'no_previous_section'}, 787 backwardError: 'no_previous_section'},
786 'control': {predicate: 'controlPredicate', 788 'control': {predicate: 'controlPredicate',
787 forwardError: 'no_next_control', 789 forwardError: 'no_next_control',
788 backwardError: 'no_previous_control'} 790 backwardError: 'no_previous_control'}
789 }; 791 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698