| 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 15 matching lines...) Expand all Loading... |
| 26 CANDIDATE_ID: 'candidateID', | 26 CANDIDATE_ID: 'candidateID', |
| 27 CODE: 'code', | 27 CODE: 'code', |
| 28 CONTEXT_ID: 'contextID', | 28 CONTEXT_ID: 'contextID', |
| 29 CONTEXT_TYPE: 'contextType', | 29 CONTEXT_TYPE: 'contextType', |
| 30 CURSOR_VISIBLE: 'cursorVisible', | 30 CURSOR_VISIBLE: 'cursorVisible', |
| 31 CTRL_KEY: 'ctrlKey', | 31 CTRL_KEY: 'ctrlKey', |
| 32 CURSOR: 'cursor', | 32 CURSOR: 'cursor', |
| 33 ENGINE_ID: 'engineID', | 33 ENGINE_ID: 'engineID', |
| 34 HEIGHT: 'height', | 34 HEIGHT: 'height', |
| 35 ID: 'id', | 35 ID: 'id', |
| 36 IS_AUTOCORRECT: 'isAutoCorrect', |
| 36 IS_EMOJI: 'isEmoji', | 37 IS_EMOJI: 'isEmoji', |
| 37 IS_AUTOCORRECT: 'isAutoCorrect', | 38 IS_EXPERIMENTAL: 'IS_EXPERIMENTAL', |
| 38 KEY: 'key', | 39 KEY: 'key', |
| 39 KEYCODE: 'keyCode', | 40 KEYCODE: 'keyCode', |
| 40 KEYSET: 'keyset', | 41 KEYSET: 'keyset', |
| 41 KEY_DATA: 'keyData', | 42 KEY_DATA: 'keyData', |
| 42 LANGUAGE: 'language', | 43 LANGUAGE: 'language', |
| 44 LENGTH: 'length', |
| 43 MATCHED_LENGTHS: 'matchedLengths', | 45 MATCHED_LENGTHS: 'matchedLengths', |
| 44 MSG: 'msg', | 46 MSG: 'msg', |
| 45 THRESHOLD: 'threshold', | 47 THRESHOLD: 'threshold', |
| 46 TYPE: 'type', | 48 TYPE: 'type', |
| 49 OFFSET: 'offset', |
| 47 OPTION_PREFIX: 'optionPrefix', | 50 OPTION_PREFIX: 'optionPrefix', |
| 48 OPTION_TYPE: 'optionType', | 51 OPTION_TYPE: 'optionType', |
| 49 PAGE_SIZE: 'pageSize', | 52 PAGE_SIZE: 'pageSize', |
| 50 POSSIBILITIES: 'possibilities', | 53 POSSIBILITIES: 'possibilities', |
| 51 PROPERTIES: 'properties', | 54 PROPERTIES: 'properties', |
| 52 REQUEST_ID: 'requestId', | 55 REQUEST_ID: 'requestId', |
| 53 SCREEN: 'screen', | 56 SCREEN: 'screen', |
| 54 SHIFT_KEY: 'shiftKey', | 57 SHIFT_KEY: 'shiftKey', |
| 55 SOURCE: 'source', | 58 SOURCE: 'source', |
| 56 SOURCES: 'sources', | 59 SOURCES: 'sources', |
| 57 SPATIAL_DATA: 'spatialData', | 60 SPATIAL_DATA: 'spatialData', |
| 58 STROKES: 'strokes', | 61 STROKES: 'strokes', |
| 59 TEXT: 'text', | 62 TEXT: 'text', |
| 60 VERTICAL: 'vertical', | 63 VERTICAL: 'vertical', |
| 61 VISIBLE: 'visible', | 64 VISIBLE: 'visible', |
| 62 VISIBILITY: 'visibility', | 65 VISIBILITY: 'visibility', |
| 66 VOICE_STATE: 'voice_state', |
| 63 WIDTH: 'width', | 67 WIDTH: 'width', |
| 64 SWITCHING: 'switching' | 68 WORKSPACE_HEIGHT: 'workspace_height', |
| 69 SWITCHING: 'switching', |
| 70 VOICE_PRIVACY_INFO: 'voice_privacy_info', |
| 71 HWT_PRIVACY_INFO: 'hwt_privacy_info' |
| 65 }; | 72 }; |
| OLD | NEW |