Searched refs:MyInstance (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/ppapi/examples/stub/
H A Dstub.cc11 class MyInstance : public pp::Instance { class in inherits:pp::Instance
13 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {} function in class:MyInstance
14 virtual ~MyInstance() {}
30 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/threading/
H A Dthreading.cc12 class MyInstance : public pp::Instance { class in inherits:pp::Instance
14 MyInstance(PP_Instance instance) : pp::Instance(instance) { function in class:MyInstance
19 virtual ~MyInstance() {
26 factory_.NewCallback(&MyInstance::CallOnBackground));
37 pp::CompletionCallbackFactory<MyInstance> factory_;
49 return new MyInstance(instance);
/external/chromium_org/ppapi/tests/manual/
H A Ddelete_plugin.cc14 class MyInstance : public pp::Instance { class in inherits:pp::Instance
16 MyInstance(PP_Instance instance) : pp::Instance(instance) { function in class:MyInstance
20 virtual ~MyInstance() {
31 factory_.NewCallback(&MyInstance::SayHello));
56 pp::CompletionCallbackFactory<MyInstance> factory_;
65 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/url_loader/
H A Dstream_to_file.cc31 class MyInstance : public pp::Instance { class in inherits:pp::Instance
33 explicit MyInstance(PP_Instance instance) function in class:MyInstance
37 virtual ~MyInstance() {
65 pp::CompletionCallbackFactory<MyInstance> factory_;
80 void MyInstance::HandleMessage(const pp::Var& message_data) {
85 void MyInstance::StartRequest(const std::string& url) {
95 factory_.NewCallback(&MyInstance::OnOpenComplete));
98 void MyInstance::OnOpenComplete(int32_t result) {
105 factory_.NewCallback(&MyInstance::OnStreamComplete));
110 void MyInstance
[all...]
H A Dstreaming.cc28 class MyInstance : public pp::Instance { class in inherits:pp::Instance
30 explicit MyInstance(PP_Instance instance) function in class:MyInstance
34 virtual ~MyInstance() {
62 pp::CompletionCallbackFactory<MyInstance> factory_;
75 void MyInstance::HandleMessage(const pp::Var& message_data) {
80 void MyInstance::StartRequest(const std::string& url) {
89 factory_.NewCallback(&MyInstance::OnOpenComplete));
92 void MyInstance::OnOpenComplete(int32_t result) {
107 void MyInstance::ReadMore() {
115 factory_.NewOptionalCallback(&MyInstance
[all...]
/external/chromium_org/ppapi/examples/crxfs/
H A Dcrxfs.cc24 class MyInstance : public pp::Instance { class in inherits:pp::Instance
26 explicit MyInstance(PP_Instance instance) function in class:MyInstance
31 virtual ~MyInstance() {
48 pp::CompletionCallbackFactory<MyInstance> factory_;
58 void MyInstance::HandleMessage(const pp::Var& message_data) {
67 void MyInstance::OpenCrxFsAndReadFile(const std::string& filename) {
71 factory_.NewCallbackWithOutput(&MyInstance::CrxFileSystemCallback);
80 void MyInstance::CrxFileSystemCallback(int32_t pp_error,
91 factory_.NewCallback(&MyInstance::FileIOOpenCallback));
96 void MyInstance
[all...]
/external/chromium_org/ppapi/examples/scripting/
H A Dpost_message.cc21 class MyInstance : public pp::Instance { class in inherits:pp::Instance
23 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {} function in class:MyInstance
24 virtual ~MyInstance() {}
32 void MyInstance::HandleMessage(const pp::Var& message_data) {
51 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/printing/
H A Dprinting.cc46 class MyInstance : public pp::Instance, public pp::Printing_Dev { class in inherits:pp::Instance,pp::Printing_Dev
48 explicit MyInstance(PP_Instance instance) function in class:MyInstance
52 virtual ~MyInstance() {}
91 return new MyInstance(instance);
/external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
H A Dpm_pre_init_manifest_file_test.cc191 class MyInstance;
194 class MyInstance : public nacl_ppapi::NaClPpapiPluginInstance { class in inherits:nacl_ppapi::NaClPpapiPluginInstance
196 explicit MyInstance(PP_Instance instance);
197 virtual ~MyInstance();
201 DISALLOW_COPY_AND_ASSIGN(MyInstance);
206 MyInstance::MyInstance(PP_Instance instance) function in class:MyInstance
210 MyInstance::~MyInstance() {}
218 void MyInstance
[all...]
H A Dpm_manifest_file_test.cc61 class MyInstance;
85 explicit Worker(MyInstance *instance);
124 MyInstance *instance_; // cannot use directly from test worker thread!
156 class MyInstance : public nacl_ppapi::NaClPpapiPluginInstance { class in inherits:nacl_ppapi::NaClPpapiPluginInstance
158 explicit MyInstance(PP_Instance instance);
159 virtual ~MyInstance();
170 DISALLOW_COPY_AND_ASSIGN(MyInstance);
234 MyInstance::MyInstance(PP_Instance instance) function in class:MyInstance
239 MyInstance
[all...]
/external/chromium_org/ppapi/examples/flash_topmost/
H A Dflash_topmost.cc17 class MyInstance : public pp::Instance { class in inherits:pp::Instance
19 explicit MyInstance(PP_Instance instance) function in class:MyInstance
25 virtual ~MyInstance() {
48 callback_factory_.NewCallback(&MyInstance::OnTimer),
79 callback_factory_.NewCallback(&MyInstance::DidFlush));
110 pp::CompletionCallbackFactory<MyInstance> callback_factory_;
122 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/file_chooser/
H A Dfile_chooser.cc16 class MyInstance : public pp::InstancePrivate { class in inherits:pp::InstancePrivate
18 MyInstance(PP_Instance instance) function in class:MyInstance
53 &MyInstance::ShowSelectedFileNames));
84 pp::CompletionCallbackFactory<MyInstance> callback_factory_;
94 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/2d/
H A Dscroll.cc35 class MyInstance : public pp::Instance, public pp::PaintManager::Client { class in inherits:pp::Instance,pp::PaintManager::Client
37 MyInstance(PP_Instance instance) function in class:MyInstance
51 16, factory_.NewCallback(&MyInstance::OnTimer), 0);
71 16, factory_.NewCallback(&MyInstance::OnTimer), 0);
99 pp::CompletionCallbackFactory<MyInstance> factory_;
111 return new MyInstance(instance);
H A Dpaint_manager_example.cc40 class MyInstance : public pp::Instance, public pp::PaintManager::Client { class in inherits:pp::Instance,pp::PaintManager::Client
42 MyInstance(PP_Instance instance) function in class:MyInstance
152 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc27 class MyInstance : public pp::Instance { class in inherits:pp::Instance
29 MyInstance(PP_Instance instance) function in class:MyInstance
34 virtual ~MyInstance() {
89 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/audio_input/
H A Daudio_input.cc41 class MyInstance : public pp::Instance { class in inherits:pp::Instance
43 explicit MyInstance(PP_Instance instance) function in class:MyInstance
54 virtual ~MyInstance() {
99 &MyInstance::MonitorDeviceChangeCallback, this);
105 &MyInstance::EnumerateDevicesFinished);
138 callback_factory_.NewCallback(&MyInstance::OnTimer),
169 callback_factory_.NewCallback(&MyInstance::DidFlush));
226 &MyInstance::OpenFinished);
275 MyInstance* thiz = static_cast<MyInstance*>(ct
[all...]
/external/chromium_org/ppapi/examples/gamepad/
H A Dgamepad.cc36 class MyInstance : public pp::Instance { class in inherits:pp::Instance
38 explicit MyInstance(PP_Instance instance) function in class:MyInstance
45 virtual ~MyInstance() {}
81 callback_factory_.NewCallback(&MyInstance::OnFlush));
122 pp::CompletionCallbackFactory<MyInstance> callback_factory_;
138 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/audio/
H A Daudio.cc35 class MyInstance : public pp::Instance { class in inherits:pp::Instance
37 explicit MyInstance(PP_Instance instance) function in class:MyInstance
75 static_cast<MyInstance*>(thiz)->SineWaveCallback(samples, num_bytes);
122 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/mouse_lock/
H A Dmouse_lock.cc23 class MyInstance : public pp::Instance, public pp::MouseLock { class in inherits:pp::Instance,pp::MouseLock
25 explicit MyInstance(PP_Instance instance) function in class:MyInstance
37 virtual ~MyInstance() {}
56 LockMouse(callback_factory_.NewCallback(&MyInstance::DidLockMouse));
76 LockMouse(callback_factory_.NewCallback(&MyInstance::DidLockMouse));
142 callback_factory_.NewCallback(&MyInstance::DidFlush));
250 pp::CompletionCallbackFactory<MyInstance> callback_factory_;
268 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/font/
H A Dsimple_font.cc19 class MyInstance : public pp::Instance { class in inherits:pp::Instance
21 MyInstance(PP_Instance instance) function in class:MyInstance
108 return new MyInstance(instance);
/external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
H A Dfault_pm_nameservice_test.cc192 class MyInstance : public pp::Instance { class in inherits:pp::Instance
194 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {} function in class:MyInstance
195 virtual ~MyInstance() {}
203 void MyInstance::HandleMessage(const pp::Var& message_data) {
255 return new MyInstance(instance);
/external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/
H A Dpm_nameservice_test.cc192 class MyInstance : public pp::Instance { class in inherits:pp::Instance
194 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {} function in class:MyInstance
195 virtual ~MyInstance() {}
203 void MyInstance::HandleMessage(const pp::Var& message_data) {
255 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/input/
H A Dpointer_event_input.cc40 class MyInstance : public pp::Instance, public pp::PaintManager::Client { class in inherits:pp::Instance,pp::PaintManager::Client
42 MyInstance(PP_Instance instance) function in class:MyInstance
170 return new MyInstance(instance);
/external/chromium_org/ppapi/examples/scaling/
H A Dscaling.cc26 class MyInstance : public pp::Instance { class in inherits:pp::Instance
28 explicit MyInstance(PP_Instance instance) function in class:MyInstance
221 return new MyInstance(instance);
/external/chromium_org/ppapi/tests/extensions/socket/
H A Dtest_socket.cc33 class MyInstance : public Instance { class in inherits:Instance
35 explicit MyInstance(PP_Instance instance) function in class:MyInstance
41 virtual ~MyInstance() {
643 return new MyInstance(instance);

Completed in 332 milliseconds

12