forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathppb_flash.idl
274 lines (243 loc) · 7.74 KB
/
ppb_flash.idl
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/* Copyright (c) 2012 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.
*/
/**
* This file contains the <code>PPB_Flash</code> interface.
*/
label Chrome {
M21 = 12.4,
M22 = 12.5,
M24_0 = 12.6,
M24_1 = 13.0
};
[assert_size(4)]
enum PP_FlashLSORestrictions {
/**
* No restrictions on Flash LSOs.
*/
PP_FLASHLSORESTRICTIONS_NONE = 1,
/**
* Don't allow access to Flash LSOs.
*/
PP_FLASHLSORESTRICTIONS_BLOCK = 2,
/**
* Store Flash LSOs in memory only.
*/
PP_FLASHLSORESTRICTIONS_IN_MEMORY = 3
};
[assert_size(4)]
enum PP_FlashSetting {
/**
* Specifies if the system likely supports 3D hardware acceleration.
*
* The result is a boolean PP_Var, depending on the supported nature of 3D
* acceleration. If querying this function returns true, the 3D system will
* normally use the native hardware for rendering which will be much faster.
*
* Having this set to true only means that 3D should be used to draw 2D and
* video elements. PP_FLASHSETTING_STAGE3D_ENABLED should be checked to
* determine if it's ok to use 3D for arbitrary content.
*
* In rare cases (depending on the platform) this value will be true but a
* created 3D context will use emulation because context initialization
* failed.
*/
PP_FLASHSETTING_3DENABLED = 1,
/**
* Specifies if the given instance is in private/incognito/off-the-record mode
* (returns true) or "regular" mode (returns false). Returns an undefined
* PP_Var on invalid instance.
*/
PP_FLASHSETTING_INCOGNITO = 2,
/**
* Specifies if arbitrary 3d commands are supported (returns true), or if 3d
* should only be used for drawing 2d and video (returns false).
*
* This should only be enabled if PP_FLASHSETTING_3DENABLED is true.
*/
PP_FLASHSETTING_STAGE3DENABLED = 3,
/**
* Specifies the string for the language code of the UI of the browser.
*
* For example: "en-US" or "de".
*
* Returns an undefined PP_Var on invalid instance.
*/
PP_FLASHSETTING_LANGUAGE = 4,
/**
* Specifies the number of CPU cores that are present on the system.
*/
PP_FLASHSETTING_NUMCORES = 5,
/**
* Specifies restrictions on how flash should handle LSOs. The result is an
* int from <code>PP_FlashLSORestrictions</code>.
*/
PP_FLASHSETTING_LSORESTRICTIONS = 6,
/**
* Specifies if the driver is reliable enough to use Shader Model 3 commands
* with it.
*
* This should only be enabled if PP_FLASHSETTING_STAGE3DENABLED is true.
*/
PP_FLASHSETTING_STAGE3DBASELINEENABLED = 7
};
/**
* This enum provides keys for setting breakpad crash report data.
*/
[assert_size(4)]
enum PP_FlashCrashKey {
/**
* Specifies the document URL which contains the flash instance.
*/
PP_FLASHCRASHKEY_URL = 1,
/**
* Specifies the URL of the current swf.
*/
PP_FLASHCRASHKEY_RESOURCE_URL = 2
};
/**
* The <code>PPB_Flash</code> interface contains pointers to various functions
* that are only needed to support Pepper Flash.
*/
interface PPB_Flash {
/**
* Sets or clears the rendering hint that the given plugin instance is always
* on top of page content. Somewhat more optimized painting can be used in
* this case.
*/
void SetInstanceAlwaysOnTop(
[in] PP_Instance instance,
[in] PP_Bool on_top);
/**
* Draws the given pre-laid-out text. It is almost equivalent to Windows'
* ExtTextOut with the addition of the transformation (a 3x3 matrix given the
* transform to apply before drawing). It also adds the allow_subpixel_aa
* flag which when true, will use subpixel antialiasing if enabled in the
* system settings. For this to work properly, the graphics layer that the
* text is being drawn into must be opaque.
*/
PP_Bool DrawGlyphs(
[in] PP_Instance instance,
[in] PP_Resource pp_image_data,
[in] PP_BrowserFont_Trusted_Description font_desc,
[in] uint32_t color,
[in] PP_Point position,
[in] PP_Rect clip,
[in] float_t[3][3] transformation,
[in] PP_Bool allow_subpixel_aa,
[in] uint32_t glyph_count,
[in, size_is(glyph_count)] uint16_t[] glyph_indices,
[in, size_is(glyph_count)] PP_Point[] glyph_advances);
/**
* Retrieves the proxy that will be used for the given URL. The result will
* be a string in PAC format, or an undefined var on error.
*/
PP_Var GetProxyForURL(
[in] PP_Instance instance,
[in] str_t url);
/**
* Navigate to the URL given by the given URLRequestInfo. (This supports GETs,
* POSTs, and javascript: URLs.) May open a new tab if target is not "_self".
*/
int32_t Navigate(
[in] PP_Resource request_info,
[in] str_t target,
[in] PP_Bool from_user_action);
/**
* Deprecated. Does nothing. Use PPB_Flash_MessageLoop.
*/
[deprecate=13.0]
void RunMessageLoop(
[in] PP_Instance instance);
/**
* Deprecated. Does nothing. Use PPB_Flash_MessageLoop.
*/
[deprecate=13.0]
void QuitMessageLoop(
[in] PP_Instance instance);
/**
* Retrieves the local time zone offset from GM time for the given UTC time.
*/
double_t GetLocalTimeZoneOffset(
[in] PP_Instance instance,
[in] PP_Time t);
/**
* Gets a (string) with "command-line" options for Flash; used to pass
* run-time debugging parameters, etc.
*/
PP_Var GetCommandLineArgs(
[in] PP_Module module);
/**
* Loads the given font in a more privileged process on Windows. Call this if
* Windows is giving errors for font calls. See
* content/renderer/font_cache_dispatcher_win.cc
*
* The parameter is a pointer to a LOGFONTW structure.
*
* On non-Windows platforms, this function does nothing.
*/
void PreloadFontWin(
[in] mem_t logfontw);
/**
* Returns whether the given rectangle (in the plugin) is topmost, i.e., above
* all other web content.
*/
PP_Bool IsRectTopmost(
[in] PP_Instance instance,
[in] PP_Rect rect);
/**
* Deprecated. Does nothing. Use PPB_Flash_Print.
*/
[deprecate=13.0]
int32_t InvokePrinting(
[in] PP_Instance instance);
/**
* Indicates that there's activity and, e.g., the screensaver shouldn't kick
* in.
*/
void UpdateActivity(
[in] PP_Instance instance);
/**
* Deprecated. Does nothing.
*/
[deprecate=13.0]
PP_Var GetDeviceID([in] PP_Instance instance);
/**
* Deprecated. Does nothing. See GetSetting().
*/
[deprecate=13.0]
int32_t GetSettingInt([in] PP_Instance instance,
[in] PP_FlashSetting setting);
/**
* Returns the value associated with the given setting. Invalid enums will
* result in an undefined PP_Var return value.
*/
PP_Var GetSetting(PP_Instance instance, PP_FlashSetting setting);
/**
* Allows setting breakpad crash data which will be included in plugin crash
* reports. Returns PP_FALSE if crash data could not be set.
*/
[version=12.5]
PP_Bool SetCrashData([in] PP_Instance instance,
[in] PP_FlashCrashKey key,
[in] PP_Var value);
/**
* Enumerates video capture devices. |video_capture| is a valid
* PPB_VideoCapture_Dev resource. Once the operation has completed
* successfully, |devices| will be set up with an array of
* PPB_DeviceRef_Dev resources.
*
* PP_OK is returned on success and different pepper error code on failure.
* The ref count of the returned |devices| has already been increased by 1 for
* the caller.
*
* NOTE: This method is a synchronous version of |EnumerateDevices| in
* PPB_VideoCapture_Dev.
*/
[version=12.6]
int32_t EnumerateVideoCaptureDevices(
[in] PP_Instance instance,
[in] PP_Resource video_capture,
[in] PP_ArrayOutput devices);
};