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

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

Issue 2054473003: Implement update notifications for ChromeVox Next. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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},
dmazzoni 2016/06/09 15:45:02 Add a category for this so it shows up in the Chro
David Tseng 2016/06/09 18:47:00 Done.
158 'openChromeVoxMenus': {announce: false, 159 'openChromeVoxMenus': {announce: false,
159 msgId: 'menus_title'}, 160 msgId: 'menus_title'},
160 'decreaseTtsRate': {announce: false, 161 'decreaseTtsRate': {announce: false,
161 msgId: 'decrease_tts_rate', 162 msgId: 'decrease_tts_rate',
162 category: 'controlling_speech'}, 163 category: 'controlling_speech'},
163 'increaseTtsRate': {announce: false, 164 'increaseTtsRate': {announce: false,
164 msgId: 'increase_tts_rate', 165 msgId: 'increase_tts_rate',
165 category: 'controlling_speech'}, 166 category: 'controlling_speech'},
166 'decreaseTtsPitch': {announce: false, 167 'decreaseTtsPitch': {announce: false,
167 msgId: 'decrease_tts_pitch', 168 msgId: 'decrease_tts_pitch',
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 'media': {predicate: 'mediaPredicate', 780 'media': {predicate: 'mediaPredicate',
780 forwardError: 'no_next_media_widget', 781 forwardError: 'no_next_media_widget',
781 backwardError: 'no_previous_media_widget'}, 782 backwardError: 'no_previous_media_widget'},
782 'section': {predicate: 'sectionPredicate', 783 'section': {predicate: 'sectionPredicate',
783 forwardError: 'no_next_section', 784 forwardError: 'no_next_section',
784 backwardError: 'no_previous_section'}, 785 backwardError: 'no_previous_section'},
785 'control': {predicate: 'controlPredicate', 786 'control': {predicate: 'controlPredicate',
786 forwardError: 'no_next_control', 787 forwardError: 'no_next_control',
787 backwardError: 'no_previous_control'} 788 backwardError: 'no_previous_control'}
788 }; 789 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698