| 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": "app", | 7 "namespace": "app", |
| 8 "nodoc": true, | 8 "nodoc": true, |
| 9 "unprivileged": true, | 9 "unprivileged": true, |
| 10 "matches": [ "<all_urls>" ], | 10 "matches": [ "<all_urls>" ], |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "name": "installState", | 39 "name": "installState", |
| 40 "description": "TODO", | 40 "description": "TODO", |
| 41 "type": "function", | 41 "type": "function", |
| 42 "parameters": [ | 42 "parameters": [ |
| 43 { | 43 { |
| 44 "type": "function", | 44 "type": "function", |
| 45 "name": "callback", | 45 "name": "callback", |
| 46 "parameters": [ | 46 "parameters": [ |
| 47 { | 47 { |
| 48 "type": "string", | 48 "type": "string", |
| 49 "name": "state", |
| 49 "enum": [ "not_installed", "installed", "disabled" ] | 50 "enum": [ "not_installed", "installed", "disabled" ] |
| 50 } | 51 } |
| 51 ] | 52 ] |
| 52 } | 53 } |
| 53 ] | 54 ] |
| 54 }, | 55 }, |
| 55 { | 56 { |
| 56 "name": "runningState", | 57 "name": "runningState", |
| 57 "description": "TODO", | 58 "description": "TODO", |
| 58 "type": "function", | 59 "type": "function", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 ], | 93 ], |
| 93 "returns": { | 94 "returns": { |
| 94 "$ref": "Details", | 95 "$ref": "Details", |
| 95 "optional": true, | 96 "optional": true, |
| 96 "description": "TODO" | 97 "description": "TODO" |
| 97 } | 98 } |
| 98 } | 99 } |
| 99 ] | 100 ] |
| 100 } | 101 } |
| 101 ] | 102 ] |
| OLD | NEW |