OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PPB_Buffer_Impl
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/content/renderer/pepper/
ppb_buffer_impl.cc
5
#include "content/renderer/pepper/
ppb_buffer_impl
.h"
22
PPB_Buffer_Impl
::
PPB_Buffer_Impl
(PP_Instance instance)
25
PPB_Buffer_Impl
::~
PPB_Buffer_Impl
() {}
28
PP_Resource
PPB_Buffer_Impl
::Create(PP_Instance instance, uint32_t size) {
29
scoped_refptr<
PPB_Buffer_Impl
> new_resource(CreateResource(instance, size));
36
scoped_refptr<
PPB_Buffer_Impl
>
PPB_Buffer_Impl
::CreateResource(
39
scoped_refptr<
PPB_Buffer_Impl
> buffer(new PPB_Buffer_Impl(instance))
[
all
...]
ppb_buffer_impl.h
17
class
PPB_Buffer_Impl
: public ppapi::Resource,
21
static scoped_refptr<
PPB_Buffer_Impl
> CreateResource(PP_Instance instance,
24
virtual
PPB_Buffer_Impl
* AsPPB_Buffer_Impl();
42
virtual ~
PPB_Buffer_Impl
();
44
explicit
PPB_Buffer_Impl
(PP_Instance instance);
51
DISALLOW_COPY_AND_ASSIGN(
PPB_Buffer_Impl
);
Completed in 1130 milliseconds