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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
82 } | 82 } |
83 ] | 83 ] |
84 }, | 84 }, |
85 { | 85 { |
86 "name": "setAutoSize", | 86 "name": "setAutoSize", |
87 "type": "function", | 87 "type": "function", |
88 "parameters": [ | 88 "parameters": [ |
89 { | 89 { |
90 "type": "integer", | 90 "type": "integer", |
91 "name": "instanceId", | 91 "name": "instanceId", |
92 "description": "The instance ID of the guest <webview> process . This not exposed to developers through the API." | 92 "description": "The instance ID of the guest renderer. This not expo sed to developers through the API." |
lazyboy
2014/12/16 23:57:30
I'd do this in a separate CL.
Fady Samuel
2014/12/17 19:30:35
Done.
| |
93 }, | 93 }, |
94 { | 94 { |
95 "$ref": "AutoSizeParams", | 95 "$ref": "AutoSizeParams", |
96 "name": "params" | 96 "name": "params" |
97 }, | 97 }, |
98 { | 98 { |
99 "type": "function", | 99 "type": "function", |
100 "name": "callback", | 100 "name": "callback", |
101 "parameters": [], | 101 "parameters": [], |
102 "optional": true | 102 "optional": true |
103 } | 103 } |
104 ] | 104 ] |
105 } | 105 } |
106 ] | 106 ] |
107 } | 107 } |
108 ] | 108 ] |
OLD | NEW |