blob: c6b266c32eac977705cde485d9b7bbbfb9541274 (
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
|
/* 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.
*/
/* From trusted/ppb_image_data_trusted.idl modified Wed Oct 5 14:06:02 2011. */
#ifndef PPAPI_C_TRUSTED_PPB_IMAGE_DATA_TRUSTED_H_
#define PPAPI_C_TRUSTED_PPB_IMAGE_DATA_TRUSTED_H_
#include "ppapi/c/pp_macros.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
#define PPB_IMAGEDATA_TRUSTED_INTERFACE_0_4 "PPB_ImageDataTrusted;0.4"
#define PPB_IMAGEDATA_TRUSTED_INTERFACE PPB_IMAGEDATA_TRUSTED_INTERFACE_0_4
/**
* @file
* This file defines the trusted ImageData interface.
*/
/**
* @addtogroup Interfaces
* @{
*/
/** Trusted interface */
struct PPB_ImageDataTrusted_0_4 {
/**
* Returns the internal shared memory pointer associated with the given
* ImageData resource. Used for proxying. Returns PP_OK on success, or
* PP_ERROR_* on failure. On success, the size in bytes of the shared
* memory region will be placed into |*byte_count|, and the handle for
* the shared memory in |*handle|.
*/
int32_t (*GetSharedMemory)(PP_Resource image_data,
int* handle,
uint32_t* byte_count);
};
typedef struct PPB_ImageDataTrusted_0_4 PPB_ImageDataTrusted;
/**
* @}
*/
#endif /* PPAPI_C_TRUSTED_PPB_IMAGE_DATA_TRUSTED_H_ */
|