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

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

Issue 1684693002: Revert of Implement ChromeVox Next menus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@panel_view_type
Patch Set: generating revert using git Created 4 years, 10 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
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: 'modifier_keys'}, 156 category: 'controlling_speech'},
157 'toggleChromeVoxVersion': {announce: false}, 157 'toggleChromeVoxVersion': {announce: false},
158 'openChromeVoxMenus': {announce: false,
159 msgId: 'menus_title'},
160 'decreaseTtsRate': {announce: false, 158 'decreaseTtsRate': {announce: false,
161 msgId: 'decrease_tts_rate', 159 msgId: 'decrease_tts_rate',
162 category: 'controlling_speech'}, 160 category: 'controlling_speech'},
163 'increaseTtsRate': {announce: false, 161 'increaseTtsRate': {announce: false,
164 msgId: 'increase_tts_rate', 162 msgId: 'increase_tts_rate',
165 category: 'controlling_speech'}, 163 category: 'controlling_speech'},
166 'decreaseTtsPitch': {announce: false, 164 'decreaseTtsPitch': {announce: false,
167 msgId: 'decrease_tts_pitch', 165 msgId: 'decrease_tts_pitch',
168 category: 'controlling_speech'}, 166 category: 'controlling_speech'},
169 'increaseTtsPitch': {announce: false, 167 'increaseTtsPitch': {announce: false,
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 'toggleKeyboardHelp': {announce: false, 337 'toggleKeyboardHelp': {announce: false,
340 disallowContinuation: true, 338 disallowContinuation: true,
341 msgId: 'show_power_key', 339 msgId: 'show_power_key',
342 category: 'help_commands'}, 340 category: 'help_commands'},
343 'help': {announce: false, 341 'help': {announce: false,
344 msgId: 'help', 342 msgId: 'help',
345 'disallowOOBE': true, 343 'disallowOOBE': true,
346 disallowContinuation: true, 344 disallowContinuation: true,
347 category: 'help_commands'}, 345 category: 'help_commands'},
348 'contextMenu': {announce: false, 346 'contextMenu': {announce: false,
349 msgId: 'show_context_menu',
350 disallowContinuation: true}, 347 disallowContinuation: true},
351 348
352 'showOptionsPage': {announce: false, 349 'showOptionsPage': {announce: false,
353 disallowContinuation: true, 350 disallowContinuation: true,
354 msgId: 'show_options_page', 351 msgId: 'show_options_page',
355 'disallowOOBE': true, 352 'disallowOOBE': true,
356 category: 'help_commands'}, 353 category: 'help_commands'},
357 'showKbExplorerPage': {announce: false, 354 'showKbExplorerPage': {announce: false,
358 disallowContinuation: true, 355 disallowContinuation: true,
359 msgId: 'show_kb_explorer_page', 356 msgId: 'show_kb_explorer_page',
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 'media': {predicate: 'mediaPredicate', 776 'media': {predicate: 'mediaPredicate',
780 forwardError: 'no_next_media_widget', 777 forwardError: 'no_next_media_widget',
781 backwardError: 'no_previous_media_widget'}, 778 backwardError: 'no_previous_media_widget'},
782 'section': {predicate: 'sectionPredicate', 779 'section': {predicate: 'sectionPredicate',
783 forwardError: 'no_next_section', 780 forwardError: 'no_next_section',
784 backwardError: 'no_previous_section'}, 781 backwardError: 'no_previous_section'},
785 'control': {predicate: 'controlPredicate', 782 'control': {predicate: 'controlPredicate',
786 forwardError: 'no_next_control', 783 forwardError: 'no_next_control',
787 backwardError: 'no_previous_control'} 784 backwardError: 'no_previous_control'}
788 }; 785 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698