OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The ChromeOS IME Authors. All Rights Reserved. |
| 2 // limitations under the License. |
| 3 // See the License for the specific language governing permissions and |
| 4 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 5 // distributed under the License is distributed on an "AS-IS" BASIS, |
| 6 // Unless required by applicable law or agreed to in writing, software |
| 7 // |
| 8 // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 // |
| 10 // You may obtain a copy of the License at |
| 11 // you may not use this file except in compliance with the License. |
| 12 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 13 // |
| 14 goog.provide('i18n.input.chrome.message.Name'); |
| 15 |
| 16 /** |
| 17 * The message attribute name. |
| 18 * |
| 19 * @enum {string} |
| 20 */ |
| 21 i18n.input.chrome.message.Name = { |
| 22 ALT_KEY: 'altKey', |
| 23 CANDIDATE: 'candidate', |
| 24 CANDIDATES: 'candidates', |
| 25 CANDIDATE_ID: 'candidateID', |
| 26 CODE: 'code', |
| 27 CONTEXT_ID: 'contextID', |
| 28 CONTEXT_TYPE: 'contextType', |
| 29 CURSOR_VISIBLE: 'cursorVisible', |
| 30 CTRL_KEY: 'ctrlKey', |
| 31 CURSOR: 'cursor', |
| 32 ENGINE_ID: 'engineID', |
| 33 HEIGHT: 'height', |
| 34 ID: 'id', |
| 35 IS_EMOJI: 'isEmoji', |
| 36 IS_AUTOCORRECT: 'isAutoCorrect', |
| 37 KEY: 'key', |
| 38 KEYCODE: 'keyCode', |
| 39 KEYSET: 'keyset', |
| 40 KEY_DATA: 'keyData', |
| 41 LANGUAGE: 'language', |
| 42 MATCHED_LENGTHS: 'matchedLengths', |
| 43 MSG: 'msg', |
| 44 MSG_TYPE: 'type', |
| 45 OPTION_PREFIX: 'optionPrefix', |
| 46 OPTION_TYPE: 'optionType', |
| 47 PAGE_SIZE: 'pageSize', |
| 48 POSSIBILITIES: 'possibilities', |
| 49 PROPERTIES: 'properties', |
| 50 REQUEST_ID: 'requestId', |
| 51 SHIFT_KEY: 'shiftKey', |
| 52 SOURCE: 'source', |
| 53 SOURCES: 'sources', |
| 54 SPATIAL_DATA: 'spatialData', |
| 55 SCREEN: 'screen', |
| 56 STROKES: 'strokes', |
| 57 TEXT: 'text', |
| 58 VERTICAL: 'vertical', |
| 59 VISIBLE: 'visible', |
| 60 VISIBILITY: 'visibility', |
| 61 WIDTH: 'width' |
| 62 }; |
OLD | NEW |