| 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 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 CANDIDATES: 'candidates', | 28 CANDIDATES: 'candidates', |
| 29 CANDIDATE_ID: 'candidateID', | 29 CANDIDATE_ID: 'candidateID', |
| 30 CODE: 'code', | 30 CODE: 'code', |
| 31 CONTEXT_ID: 'contextID', | 31 CONTEXT_ID: 'contextID', |
| 32 CONTEXT_TYPE: 'contextType', | 32 CONTEXT_TYPE: 'contextType', |
| 33 CURSOR_VISIBLE: 'cursorVisible', | 33 CURSOR_VISIBLE: 'cursorVisible', |
| 34 CTRL_KEY: 'ctrlKey', | 34 CTRL_KEY: 'ctrlKey', |
| 35 CURSOR: 'cursor', | 35 CURSOR: 'cursor', |
| 36 ENGINE_ID: 'engineID', | 36 ENGINE_ID: 'engineID', |
| 37 FOCUS: 'focus', | 37 FOCUS: 'focus', |
| 38 GESTURE_DATA: 'gestureData', |
| 39 GESTURE_RESULTS: 'gestureResults', |
| 38 HEIGHT: 'height', | 40 HEIGHT: 'height', |
| 39 ID: 'id', | 41 ID: 'id', |
| 42 IN_PROGRESS: 'inProgress', |
| 40 IS_AUTOCORRECT: 'isAutoCorrect', | 43 IS_AUTOCORRECT: 'isAutoCorrect', |
| 41 IS_EMOJI: 'isEmoji', | 44 IS_EMOJI: 'isEmoji', |
| 45 IS_SWIPE: 'isSwipe', |
| 42 KEY: 'key', | 46 KEY: 'key', |
| 47 KEYBOARD_LAYOUT: 'keyboardLayout', |
| 43 KEYCODE: 'keyCode', | 48 KEYCODE: 'keyCode', |
| 44 KEYSET: 'keyset', | 49 KEYSET: 'keyset', |
| 45 KEY_DATA: 'keyData', | 50 KEY_DATA: 'keyData', |
| 46 LANGUAGE: 'language', | 51 LANGUAGE: 'language', |
| 47 LENGTH: 'length', | 52 LENGTH: 'length', |
| 48 MATCHED_LENGTHS: 'matchedLengths', | 53 MATCHED_LENGTHS: 'matchedLengths', |
| 49 MSG: 'msg', | 54 MSG: 'msg', |
| 50 THRESHOLD: 'threshold', | 55 THRESHOLD: 'threshold', |
| 51 TYPE: 'type', | 56 TYPE: 'type', |
| 52 OFFSET: 'offset', | 57 OFFSET: 'offset', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 66 VERTICAL: 'vertical', | 71 VERTICAL: 'vertical', |
| 67 VISIBLE: 'visible', | 72 VISIBLE: 'visible', |
| 68 VISIBILITY: 'visibility', | 73 VISIBILITY: 'visibility', |
| 69 VOICE_STATE: 'voice_state', | 74 VOICE_STATE: 'voice_state', |
| 70 WIDTH: 'width', | 75 WIDTH: 'width', |
| 71 WORKSPACE_HEIGHT: 'workspace_height', | 76 WORKSPACE_HEIGHT: 'workspace_height', |
| 72 SWITCHING: 'switching', | 77 SWITCHING: 'switching', |
| 73 VOICE_PRIVACY_INFO: 'voice_privacy_info', | 78 VOICE_PRIVACY_INFO: 'voice_privacy_info', |
| 74 HWT_PRIVACY_INFO: 'hwt_privacy_info' | 79 HWT_PRIVACY_INFO: 'hwt_privacy_info' |
| 75 }; | 80 }; |
| OLD | NEW |