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

Side by Side Diff: chrome/browser/resources/chromeos/braille_ime/externs.js

Issue 271723002: Make Braille IME send space bar as an empty cell instead of letting propagate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ime
Patch Set: Simplify a check. Created 6 years, 7 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
« no previous file with comments | « chrome/browser/resources/chromeos/braille_ime/check_braille_ime.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 * @fileoverview Externs for the braille IME. 6 * @fileoverview Externs for the braille IME.
7 * @externs 7 * @externs
8 */ 8 */
9 9
10 /** 10 /**
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 /** @type {boolean} */ 135 /** @type {boolean} */
136 ChromeKeyboardEvent.prototype.altKey; 136 ChromeKeyboardEvent.prototype.altKey;
137 137
138 /** @type {boolean} */ 138 /** @type {boolean} */
139 ChromeKeyboardEvent.prototype.ctrlKey; 139 ChromeKeyboardEvent.prototype.ctrlKey;
140 140
141 /** @type {boolean} */ 141 /** @type {boolean} */
142 ChromeKeyboardEvent.prototype.shiftKey; 142 ChromeKeyboardEvent.prototype.shiftKey;
143 143
144 /** @type {boolean} */
145 ChromeKeyboardEvent.prototype.capsLock;
146
144 /** 147 /**
145 * @constructor 148 * @constructor
146 */ 149 */
147 function InputContext() {} 150 function InputContext() {}
148 151
149 /** @type {number} */ 152 /** @type {number} */
150 InputContext.prototype.contextID; 153 InputContext.prototype.contextID;
151 154
152 /** @type {string} */ 155 /** @type {string} */
153 InputContext.prototype.type; 156 InputContext.prototype.type;
154 157
155 /** 158 /**
156 * @typedef {{ 159 * @typedef {{
157 * id: string, 160 * id: string,
158 * label: (string|undefined), 161 * label: (string|undefined),
159 * style: string, 162 * style: string,
160 * visible: (boolean|undefined), 163 * visible: (boolean|undefined),
161 * checked: (boolean|undefined), 164 * checked: (boolean|undefined),
162 * enabled: (boolean|undefined) 165 * enabled: (boolean|undefined)
163 * }} 166 * }}
164 */ 167 */
165 chrome.input.ime.MenuItem; 168 chrome.input.ime.MenuItem;
166 169
167 /** 170 /**
168 * @type {Object} 171 * @type {Object}
169 */ 172 */
170 var localStorage; 173 var localStorage;
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/braille_ime/check_braille_ime.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698