| OLD | NEW |
| 1 // Copyright 2014 The ChromeOS IME Authors. All Rights Reserved. | 1 // Copyright 2014 The ChromeOS IME Authors. All Rights Reserved. |
| 2 // limitations under the License. | 2 // limitations under the License. |
| 3 // See the License for the specific language governing permissions and | 3 // See the License for the specific language governing permissions and |
| 4 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 4 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 5 // distributed under the License is distributed on an "AS-IS" BASIS, | 5 // distributed under the License is distributed on an "AS-IS" BASIS, |
| 6 // Unless required by applicable law or agreed to in writing, software | 6 // Unless required by applicable law or agreed to in writing, software |
| 7 // | 7 // |
| 8 // http://www.apache.org/licenses/LICENSE-2.0 | 8 // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 // | 9 // |
| 10 // You may obtain a copy of the License at | 10 // You may obtain a copy of the License at |
| 11 // you may not use this file except in compliance with the License. | 11 // you may not use this file except in compliance with the License. |
| 12 // Licensed under the Apache License, Version 2.0 (the "License"); | 12 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 13 // | 13 // |
| 14 goog.provide('i18n.input.chrome.message.Name'); | 14 goog.provide('i18n.input.chrome.message.Name'); |
| 15 | 15 |
| 16 | 16 |
| 17 /** | 17 /** |
| 18 * The message attribute name. | 18 * The message attribute name. |
| 19 * | 19 * |
| 20 * @enum {string} | 20 * @enum {string} |
| 21 */ | 21 */ |
| 22 i18n.input.chrome.message.Name = { | 22 i18n.input.chrome.message.Name = { |
| 23 ALT_KEY: 'altKey', | 23 ALT_KEY: 'altKey', |
| 24 ANCHOR: 'anchor', |
| 24 CANDIDATE: 'candidate', | 25 CANDIDATE: 'candidate', |
| 25 CANDIDATES: 'candidates', | 26 CANDIDATES: 'candidates', |
| 26 CANDIDATE_ID: 'candidateID', | 27 CANDIDATE_ID: 'candidateID', |
| 27 CODE: 'code', | 28 CODE: 'code', |
| 28 CONTEXT_ID: 'contextID', | 29 CONTEXT_ID: 'contextID', |
| 29 CONTEXT_TYPE: 'contextType', | 30 CONTEXT_TYPE: 'contextType', |
| 30 CURSOR_VISIBLE: 'cursorVisible', | 31 CURSOR_VISIBLE: 'cursorVisible', |
| 31 CTRL_KEY: 'ctrlKey', | 32 CTRL_KEY: 'ctrlKey', |
| 32 CURSOR: 'cursor', | 33 CURSOR: 'cursor', |
| 33 ENGINE_ID: 'engineID', | 34 ENGINE_ID: 'engineID', |
| 35 FOCUS: 'focus', |
| 34 HEIGHT: 'height', | 36 HEIGHT: 'height', |
| 35 ID: 'id', | 37 ID: 'id', |
| 36 IS_AUTOCORRECT: 'isAutoCorrect', | 38 IS_AUTOCORRECT: 'isAutoCorrect', |
| 37 IS_EMOJI: 'isEmoji', | 39 IS_EMOJI: 'isEmoji', |
| 38 IS_EXPERIMENTAL: 'IS_EXPERIMENTAL', | 40 IS_EXPERIMENTAL: 'IS_EXPERIMENTAL', |
| 39 KEY: 'key', | 41 KEY: 'key', |
| 40 KEYCODE: 'keyCode', | 42 KEYCODE: 'keyCode', |
| 41 KEYSET: 'keyset', | 43 KEYSET: 'keyset', |
| 42 KEY_DATA: 'keyData', | 44 KEY_DATA: 'keyData', |
| 43 LANGUAGE: 'language', | 45 LANGUAGE: 'language', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 63 VERTICAL: 'vertical', | 65 VERTICAL: 'vertical', |
| 64 VISIBLE: 'visible', | 66 VISIBLE: 'visible', |
| 65 VISIBILITY: 'visibility', | 67 VISIBILITY: 'visibility', |
| 66 VOICE_STATE: 'voice_state', | 68 VOICE_STATE: 'voice_state', |
| 67 WIDTH: 'width', | 69 WIDTH: 'width', |
| 68 WORKSPACE_HEIGHT: 'workspace_height', | 70 WORKSPACE_HEIGHT: 'workspace_height', |
| 69 SWITCHING: 'switching', | 71 SWITCHING: 'switching', |
| 70 VOICE_PRIVACY_INFO: 'voice_privacy_info', | 72 VOICE_PRIVACY_INFO: 'voice_privacy_info', |
| 71 HWT_PRIVACY_INFO: 'hwt_privacy_info' | 73 HWT_PRIVACY_INFO: 'hwt_privacy_info' |
| 72 }; | 74 }; |
| OLD | NEW |