summaryrefslogtreecommitdiffstats
path: root/extensions/common/api/guest_view_internal.json
blob: 90c5d4e7b0e81a7f8106c2c3cb767de61473856d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

[
  {
    "namespace": "guestViewInternal",
    "compiler_options": {
      "implemented_in": "extensions/browser/api/guest_view/guest_view_internal_api.h"
    },
    "description": "none",
    "types": [
      {
        "id": "Size",
        "type": "object",
        "properties": {
          "width": {
            "type": "integer"
          },
          "height": {
            "type": "integer"
          }
        }
      },
      {
        "id": "SizeParams",
        "type": "object",
        "description": "Size parameters.",
        "properties": {
          "enableAutoSize": {
            "type": "boolean",
            "optional": true
          },
          "min": {
            "$ref": "Size",
            "optional": true
          },
          "max": {
            "$ref": "Size",
            "optional": true
          },
          "normal": {
            "$ref": "Size",
            "optional": true
          }
        }
      }
    ],
    "functions": [
      {
        "name": "createGuest",
        "type": "function",
        "parameters": [
          {
            "type": "string",
            "name": "viewType",
            "nodoc": true
          },
          {
            "type": "object",
            "name": "createParams",
            "additionalProperties": {"type": "any"}
          },
          {
            "type": "function",
            "name": "callback",
            "parameters": [
              {
                "type": "object",
                "name": "returnParams",
                "additionalProperties": {"type": "any"}
              }
            ]
          }
        ]
      },
      {
        "name": "destroyGuest",
        "type": "function",
        "parameters": [
          {
            "type": "integer",
            "name": "instanceId"
          },
          {
            "type": "function",
            "name": "callback",
            "parameters": [],
            "optional": true
          }
        ]
      },
      {
        "name": "setSize",
        "type": "function",
        "parameters": [
          {
            "type": "integer",
            "name": "instanceId",
            "description": "The instance ID of the guest <webview> process. This not exposed to developers through the API."
          },
          {
            "$ref": "SizeParams",
            "name": "params"
          },
          {
            "type": "function",
            "name": "callback",
            "parameters": [],
            "optional": true
          }
        ]
      }
    ]
  }
]