| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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": "webview", | 7 "namespace": "webview", |
| 8 "description": "none", | 8 "description": "none", |
| 9 "functions": [ | 9 "functions": [ |
| 10 { | 10 { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 { | 63 { |
| 64 "name": "result", | 64 "name": "result", |
| 65 "optional": true, | 65 "optional": true, |
| 66 "type": "array", | 66 "type": "array", |
| 67 "items": {"type": "any", "minimum": 0}, | 67 "items": {"type": "any", "minimum": 0}, |
| 68 "description": "The result of the script in every injected frame
." | 68 "description": "The result of the script in every injected frame
." |
| 69 } | 69 } |
| 70 ] | 70 ] |
| 71 } | 71 } |
| 72 ] | 72 ] |
| 73 }, |
| 74 { |
| 75 "name": "go", |
| 76 "type": "function", |
| 77 "parameters": [ |
| 78 { |
| 79 "type": "integer", |
| 80 "name": "instanceId" |
| 81 }, |
| 82 { |
| 83 "type": "integer", |
| 84 "name": "relativeIndex" |
| 85 } |
| 86 ] |
| 73 } | 87 } |
| 74 ] | 88 ] |
| 75 } | 89 } |
| 76 ] | 90 ] |
| 77 | 91 |
| OLD | NEW |