Home | History | Annotate | Download | only in scripting

Lines Matching refs:Instance

7 #include "ppapi/cpp/instance.h"
21 class MyInstance : public pp::Instance {
23 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {}
29 // associated with this plugin instance.
49 // Override CreateInstance to create your customized Instance object.
50 virtual pp::Instance* CreateInstance(PP_Instance instance) {
51 return new MyInstance(instance);