blob: 09e8c99f7c9b5dbe656038bc38a3f99b229dddfc (
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
|
/* Copyright (c) 2011 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.
*/
#ifndef PPAPI_C_PPB_INSTANCE_H_
#define PPAPI_C_PPB_INSTANCE_H_
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_var.h"
#define PPB_INSTANCE_INTERFACE_0_4 "PPB_Instance;0.4"
#define PPB_INSTANCE_INTERFACE_0_5 "PPB_Instance;0.5"
#ifdef PPAPI_INSTANCE_REMOVE_SCRIPTING
#define PPB_INSTANCE_INTERFACE PPB_INSTANCE_INTERFACE_0_5
#else
#define PPB_INSTANCE_INTERFACE PPB_INSTANCE_INTERFACE_0_4
#endif
/**
* @file
* This file defines the PPB_Instance interface implemented by the
* browser and containing pointers to functions related to
* the module instance on a web page.
*
* @addtogroup Interfaces
* @{
*/
/**
* The PPB_Instance interface contains pointers to functions
* related to the module instance on a web page.
*
*/
#ifdef PPAPI_INSTANCE_REMOVE_SCRIPTING
struct PPB_Instance {
#else
struct PPB_Instance_0_5 {
#endif
/**
* BindGraphics is a pointer to a function that binds the given
* graphics as the current drawing surface. The
* contents of this device is what will be displayed in the plugin's area
* on the web page. The device must be a 2D or a 3D device.
*
* You can pass a NULL resource as the device parameter to unbind all
* devices from the given instance. The instance will then appear
* transparent. Re-binding the same device will return PP_TRUE and will do
* nothing. Unbinding a device will drop any pending flush callbacks.
*
* Any previously-bound device will be Release()d. It is an error to bind
* a device when it is already bound to another plugin instance. If you want
* to move a device between instances, first unbind it from the old one, and
* then rebind it to the new one.
*
* Binding a device will invalidate that portion of the web page to flush the
* contents of the new device to the screen.
*
* @param[in] instance A PP_Instance indentifying one instance of a module.
* @param[in] device A PP_Resource representing the graphics device.
* @return PP_Bool containing PP_TRUE if bind was successful or PP_FALSE if
* the device was not the correct type. On success, a reference to the
* device will be held by the plugin instance, so the caller can release
* its reference if it chooses.
*/
PP_Bool (*BindGraphics)(PP_Instance instance, PP_Resource device);
/**
* IsFullFrame is a pointer to a function that determines if the
* module instance is full-frame (repr). Such a module represents
* the entire document in a frame rather than an embedded resource. This can
* happen if the user does a top level navigation or the page specifies an
* iframe to a resource with a MIME type registered by the plugin.
*
* @param[in] instance A PP_Instance indentifying one instance of a module.
* @return A PP_Bool containing PP_TRUE if the instance is full-frame.
*/
PP_Bool (*IsFullFrame)(PP_Instance instance);
};
#ifdef PPAPI_INSTANCE_REMOVE_SCRIPTING
struct PPB_Instance_0_4 {
#else
struct PPB_Instance {
#endif
struct PP_Var (*GetWindowObject)(PP_Instance instance);
struct PP_Var (*GetOwnerElementObject)(PP_Instance instance);
PP_Bool (*BindGraphics)(PP_Instance instance, PP_Resource device);
PP_Bool (*IsFullFrame)(PP_Instance instance);
struct PP_Var (*ExecuteScript)(PP_Instance instance,
struct PP_Var script,
struct PP_Var* exception);
};
/**
* @}
*/
#endif /* PPAPI_C_PPB_INSTANCE_H_ */
|