| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 [ | 5 [ |
| 6 { | 6 { |
| 7 "namespace": "inputMethodPrivate", | 7 "namespace": "inputMethodPrivate", |
| 8 "description": "none", | 8 "description": "none", |
| 9 "functions": [ | 9 "functions": [ |
| 10 { | 10 { |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 } | 218 } |
| 219 }, { | 219 }, { |
| 220 "name": "removed", | 220 "name": "removed", |
| 221 "type": "array", | 221 "type": "array", |
| 222 "description": "List of removed words.", | 222 "description": "List of removed words.", |
| 223 "items": { | 223 "items": { |
| 224 "type": "string" | 224 "type": "string" |
| 225 } | 225 } |
| 226 } | 226 } |
| 227 ] | 227 ] |
| 228 }, { |
| 229 "name": "onImeMenuActivationChanged", |
| 230 "type": "function", |
| 231 "description": "Fired when the system IME Menu is activated", |
| 232 "parameters": [ |
| 233 { |
| 234 "name": "activation", |
| 235 "type": "boolean", |
| 236 "description": "Whether the IME menu is activated or deactivated" |
| 237 } |
| 238 ] |
| 228 } | 239 } |
| 229 ] | 240 ] |
| 230 } | 241 } |
| 231 ] | 242 ] |
| OLD | NEW |