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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "parameters": [ | 60 "parameters": [ |
61 { | 61 { |
62 "type": "integer", | 62 "type": "integer", |
63 "name": "instanceId" | 63 "name": "instanceId" |
64 } | 64 } |
65 ] | 65 ] |
66 } | 66 } |
67 ] | 67 ] |
68 }, | 68 }, |
69 { | 69 { |
| 70 "name": "destroyGuest", |
| 71 "type": "function", |
| 72 "parameters": [ |
| 73 { |
| 74 "type": "integer", |
| 75 "name": "instanceId" |
| 76 } |
| 77 ] |
| 78 }, |
| 79 { |
70 "name": "setAutoSize", | 80 "name": "setAutoSize", |
71 "type": "function", | 81 "type": "function", |
72 "parameters": [ | 82 "parameters": [ |
73 { | 83 { |
74 "type": "integer", | 84 "type": "integer", |
75 "name": "instanceId", | 85 "name": "instanceId", |
76 "description": "The instance ID of the guest <webview> process
. This not exposed to developers through the API." | 86 "description": "The instance ID of the guest <webview> process
. This not exposed to developers through the API." |
77 }, | 87 }, |
78 { | 88 { |
79 "$ref": "AutoSizeParams", | 89 "$ref": "AutoSizeParams", |
80 "name": "params" | 90 "name": "params" |
81 } | 91 } |
82 ] | 92 ] |
83 } | 93 } |
84 ] | 94 ] |
85 } | 95 } |
86 ] | 96 ] |
OLD | NEW |