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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/braille_command_handler.js

Issue 2813233002: Add a command to toggle between 6 and 8 dot braille. (Closed)
Patch Set: Created 3 years, 8 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 * @fileoverview ChromeVox braille commands. 6 * @fileoverview ChromeVox braille commands.
7 */ 7 */
8 8
9 goog.provide('BrailleCommandHandler'); 9 goog.provide('BrailleCommandHandler');
10 10
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 // Question. 135 // Question.
136 map([1, 4, 5, 6], 'toggleKeyboardHelp'); 136 map([1, 4, 5, 6], 'toggleKeyboardHelp');
137 137
138 // All cells (with 7 as mod). 138 // All cells (with 7 as mod).
139 map([1, 2, 3, 4, 5, 6, 7], 'darkenScreen'); 139 map([1, 2, 3, 4, 5, 6, 7], 'darkenScreen');
140 map([1, 2, 3, 4, 5, 6], 'undarkenScreen'); 140 map([1, 2, 3, 4, 5, 6], 'undarkenScreen');
141 141
142 // s. 142 // s.
143 map([2, 3, 4], 'toggleSpeechOnOrOff'); 143 map([2, 3, 4], 'toggleSpeechOnOrOff');
144
145 // g.
146 map([1, 2, 4, 5], 'toggleBrailleTable');
144 }; 147 };
145 148
146 BrailleCommandHandler.init_(); 149 BrailleCommandHandler.init_();
147 150
148 }); // goog.scope 151 }); // goog.scope
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698