| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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": "guestViewInternal", | 7 "namespace": "guestViewInternal", |
| 8 "compiler_options": { | 8 "compiler_options": { |
| 9 "implemented_in": "extensions/browser/api/guest_view/guest_view_internal_a
pi.h" | 9 "implemented_in": "extensions/browser/api/guest_view/guest_view_internal_a
pi.h" |
| 10 }, | 10 }, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 { | 59 { |
| 60 "type": "object", | 60 "type": "object", |
| 61 "name": "createParams", | 61 "name": "createParams", |
| 62 "additionalProperties": {"type": "any"} | 62 "additionalProperties": {"type": "any"} |
| 63 }, | 63 }, |
| 64 { | 64 { |
| 65 "type": "function", | 65 "type": "function", |
| 66 "name": "callback", | 66 "name": "callback", |
| 67 "parameters": [ | 67 "parameters": [ |
| 68 { | 68 { |
| 69 "type": "integer", | 69 "type": "object", |
| 70 "name": "instanceId" | 70 "name": "returnParams", |
| 71 "additionalProperties": {"type": "any"} |
| 71 } | 72 } |
| 72 ] | 73 ] |
| 73 } | 74 } |
| 74 ] | 75 ] |
| 75 }, | 76 }, |
| 76 { | 77 { |
| 77 "name": "destroyGuest", | 78 "name": "destroyGuest", |
| 78 "type": "function", | 79 "type": "function", |
| 79 "parameters": [ | 80 "parameters": [ |
| 80 { | 81 { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 106 "type": "function", | 107 "type": "function", |
| 107 "name": "callback", | 108 "name": "callback", |
| 108 "parameters": [], | 109 "parameters": [], |
| 109 "optional": true | 110 "optional": true |
| 110 } | 111 } |
| 111 ] | 112 ] |
| 112 } | 113 } |
| 113 ] | 114 ] |
| 114 } | 115 } |
| 115 ] | 116 ] |
| OLD | NEW |