/external/chromium_org/ppapi/c/ |
ppb_audio_config.h | 98 * @param[in] instance A <code>PP_Instance</code> identifying one instance 110 PP_Resource (*CreateStereo16Bit)(PP_Instance instance, 129 * @param[in] instance 140 PP_Instance instance, 185 * @param[in] instance 190 PP_AudioSampleRate (*RecommendSampleRate)(PP_Instance instance); 196 PP_Resource (*CreateStereo16Bit)(PP_Instance instance,
|
ppb_network_proxy.h | 46 * @param[in] instance A <code>PP_Instance</code> identifying one instance 63 int32_t (*GetProxyForURL)(PP_Instance instance,
|
/external/chromium_org/ppapi/c/private/ |
ppb_ext_crx_file_system_private.h | 49 int32_t (*Open)(PP_Instance instance,
|
ppb_flash_device_id.h | 35 PP_Resource (*Create)(PP_Instance instance);
|
ppb_input_event_private.h | 49 * the plugin instance. 66 * @param[in] instance The <code>PP_Instance</code> of the instance requesting 69 void (*StartTrackingLatency)(PP_Instance instance);
|
/external/chromium_org/ppapi/cpp/dev/ |
selection_dev.h | 19 // You would typically use this either via inheritance on your instance: 20 // class MyInstance : public pp::Instance, public pp::Selection_Dev { 31 // class MyInstance : public pp::Instance { 39 explicit Selection_Dev(Instance* instance);
|
/external/chromium_org/ppapi/cpp/ |
fullscreen.h | 11 /// This file defines the API for handling transitions of a module instance to 23 /// @param[in] instance The instance with which this resource will be 25 explicit Fullscreen(const InstanceHandle& instance); 30 /// IsFullscreen() checks whether the module instance is currently in 33 /// @return <code>true</code> if the module instance is in fullscreen mode, 34 /// <code>false</code> if the module instance is not in fullscreen mode. 37 /// SetFullscreen() switches the module instance to and from fullscreen 56 /// GetScreenSize() gets the size of the screen in pixels. The module instance
|
instance_handle.h | 12 /// This file defines an instance handle used to identify an instance in a 16 class Instance; 18 /// An instance handle identifies an instance in a constructor for a resource. 21 /// 1. A pp::Instance object's lifetime is managed by the system on the main 24 /// safe to refer to a <code>pp::Instance</code> object on a background thread. 26 /// so that they may safely be used on background threads. If the instance 37 /// implicit conversion from <code>pp::Instance*</code> for prettier code on 39 /// instance objects) [all...] |
mouse_cursor.h | 18 /// the mouse is over the given instance until it is set again by another 29 /// @param[in] instance A handle identifying the instance that the mouse 46 /// @return true on success, or false if the instance or cursor type 48 static bool SetCursor(const InstanceHandle& instance,
|
mouse_lock.h | 13 /// specific module instance. 18 class Instance; 22 /// itself with the given instance, and registers as the global handler for 25 /// You would typically use this class by inheritance on your instance or by 30 /// class MyInstance : public pp::Instance, public pp::MouseLock { 43 /// class MyInstance : public pp::Instance { 54 /// @param[in] instance The instance with which this resource will be 56 explicit MouseLock(Instance* instance); [all...] |
network_monitor.h | 13 class Instance; 20 explicit NetworkMonitor(const InstanceHandle& instance);
|
network_proxy.h | 31 /// @param[in] instance An <code>InstanceHandle</code> identifying one 32 /// instance of a module. 42 const InstanceHandle& instance,
|
/external/chromium_org/ppapi/cpp/private/ |
ext_crx_file_system_private.h | 20 explicit ExtCrxFileSystemPrivate(const InstanceHandle& instance);
|
file_io_private.h | 21 explicit FileIO_Private(const InstanceHandle& instance);
|
flash_device_id.h | 17 DeviceID(const InstanceHandle& instance);
|
flash_fullscreen.h | 16 FlashFullscreen(const InstanceHandle& instance);
|
flash_message_loop.h | 19 explicit MessageLoop(const InstanceHandle& instance);
|
input_event_private.h | 21 static void StartTrackingLatency (const InstanceHandle& instance);
|
/external/chromium_org/ppapi/examples/printing/ |
printing.cc | 10 #include "ppapi/cpp/instance.h" 46 class MyInstance : public pp::Instance, public pp::Printing_Dev { 48 explicit MyInstance(PP_Instance instance) 49 : pp::Instance(instance), 89 // Override CreateInstance to create your customized Instance object. 90 virtual pp::Instance* CreateInstance(PP_Instance instance) { 91 return new MyInstance(instance);
|
/external/chromium_org/ppapi/examples/scripting/ |
post_message.cc | 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); [all...] |
/external/chromium_org/ppapi/examples/threading/ |
threading.cc | 7 #include "ppapi/cpp/instance.h" 12 class MyInstance : public pp::Instance { 14 MyInstance(PP_Instance instance) : pp::Instance(instance) { 48 virtual pp::Instance* CreateInstance(PP_Instance instance) { 49 return new MyInstance(instance);
|
/external/chromium_org/ppapi/proxy/ |
message_handler.h | 46 PP_Instance instance, 55 PP_Instance instance, 69 MessageHandler(PP_Instance instance, 73 MessageHandler(PP_Instance instance,
|
ppp_video_decoder_proxy.cc | 21 void ProvidePictureBuffers(PP_Instance instance, PP_Resource decoder, 26 decoder_resource.SetHostResource(instance, decoder); 28 HostDispatcher::GetForInstance(instance)->Send( 34 void DismissPictureBuffer(PP_Instance instance, PP_Resource decoder, 37 decoder_resource.SetHostResource(instance, decoder); 39 HostDispatcher::GetForInstance(instance)->Send( 45 void PictureReady(PP_Instance instance, PP_Resource decoder, 48 decoder_resource.SetHostResource(instance, decoder); 50 HostDispatcher::GetForInstance(instance)->Send( 55 void NotifyError(PP_Instance instance, PP_Resource decoder [all...] |
/external/chromium_org/ppapi/tests/extensions/background_keepalive/ |
background.cc | 8 #include "ppapi/cpp/instance.h" 14 class Instance : public pp::Instance { 16 explicit Instance(PP_Instance instance) : 17 pp::Instance(instance), 23 virtual ~Instance() {} 38 &Instance::DoSomething); 43 pp::CompletionCallbackFactory<Instance> callback_factory_ [all...] |
/external/chromium_org/ppapi/tests/manual/ |
delete_plugin.cc | 10 #include "ppapi/cpp/instance.h" 14 class MyInstance : public pp::Instance { 16 MyInstance(PP_Instance instance) : pp::Instance(instance) { 46 When scripting is removed from instance, this is the code that will do the 64 virtual pp::Instance* CreateInstance(PP_Instance instance) { 65 return new MyInstance(instance);
|