| 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 ANCHOR: 'anchor', |
| 25 AUXILIARY_TEXT: 'auxiliaryText', |
| 26 AUXILIARY_TEXT_VISIBLE: 'auxiliaryTextVisible', |
| 25 CANDIDATE: 'candidate', | 27 CANDIDATE: 'candidate', |
| 26 CANDIDATES: 'candidates', | 28 CANDIDATES: 'candidates', |
| 27 CANDIDATE_ID: 'candidateID', | 29 CANDIDATE_ID: 'candidateID', |
| 28 CODE: 'code', | 30 CODE: 'code', |
| 29 CONTEXT_ID: 'contextID', | 31 CONTEXT_ID: 'contextID', |
| 30 CONTEXT_TYPE: 'contextType', | 32 CONTEXT_TYPE: 'contextType', |
| 31 CURSOR_VISIBLE: 'cursorVisible', | 33 CURSOR_VISIBLE: 'cursorVisible', |
| 32 CTRL_KEY: 'ctrlKey', | 34 CTRL_KEY: 'ctrlKey', |
| 33 CURSOR: 'cursor', | 35 CURSOR: 'cursor', |
| 34 ENGINE_ID: 'engineID', | 36 ENGINE_ID: 'engineID', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 64 VERTICAL: 'vertical', | 66 VERTICAL: 'vertical', |
| 65 VISIBLE: 'visible', | 67 VISIBLE: 'visible', |
| 66 VISIBILITY: 'visibility', | 68 VISIBILITY: 'visibility', |
| 67 VOICE_STATE: 'voice_state', | 69 VOICE_STATE: 'voice_state', |
| 68 WIDTH: 'width', | 70 WIDTH: 'width', |
| 69 WORKSPACE_HEIGHT: 'workspace_height', | 71 WORKSPACE_HEIGHT: 'workspace_height', |
| 70 SWITCHING: 'switching', | 72 SWITCHING: 'switching', |
| 71 VOICE_PRIVACY_INFO: 'voice_privacy_info', | 73 VOICE_PRIVACY_INFO: 'voice_privacy_info', |
| 72 HWT_PRIVACY_INFO: 'hwt_privacy_info' | 74 HWT_PRIVACY_INFO: 'hwt_privacy_info' |
| 73 }; | 75 }; |
| OLD | NEW |