Searched defs:pp (Results 251 - 275 of 696) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ppapi/cpp/dev/
H A Dprinting_dev.cc13 namespace pp { namespace
44 pp::Instance::GetPerInstanceObject(instance, kPPPPrintingInterface);
53 pp::Instance::GetPerInstanceObject(instance, kPPPPrintingInterface);
60 pp::Instance::GetPerInstanceObject(instance, kPPPPrintingInterface);
108 } // namespace pp
H A Dscrollbar_dev.cc14 namespace pp { namespace
87 } // namespace pp
H A Dvideo_capture_client_dev.cc12 namespace pp { namespace
80 } // namespace pp
H A Dvideo_decoder_client_dev.cc14 namespace pp { namespace
86 } // namespace pp
H A Dvideo_decoder_dev.cc15 namespace pp { namespace
78 } // namespace pp
H A Dwidget_client_dev.cc17 namespace pp { namespace
88 } // namespace pp
/external/chromium_org/ppapi/cpp/
H A Ddirectory_entry.h20 namespace pp { namespace
89 // PP_DirectoryEntry written by the browser to pp::DirectoryEntry
101 // converted to the pp::DirectoryEntrys in this array for passing to the
107 // information on how to handle vectors of pp::DirectoryEntry. This converts
108 // PP_DirectoryEntry to pp::DirectoryEntry when passing to the plugin.
127 } // namespace pp
H A Dhost_resolver.cc12 namespace pp { namespace
93 } // namespace pp
H A Dnet_address.cc11 namespace pp { namespace
99 } // namespace pp
H A Doutput_traits.h24 namespace pp { namespace
99 // ResourceCallbackOutputTraits<pp::FileRef>. This is used as a base class for
101 // pp::Resource.
112 // Converts the PP_Resource to a pp::* object, passing any reference counted
129 // pp::Resource. This trick allows us to do this once rather than writing
139 // A specialization of CallbackOutputTraits for pp::Var output parameters.
140 // It passes a PP_Var* to the browser and converts to a pp::Var when passing
152 // Converts the PP_Var to a pp::Var object, passing any reference counted
155 static inline pp::Var StorageToPluginArg(StorageType& t) {
222 // ResourceVectorCallbackOutputTraits<pp
[all...]
H A Durl_request_info.cc12 namespace pp { namespace
76 } // namespace pp
H A Dvideo_decoder.cc14 namespace pp { namespace
132 } // namespace pp
/external/chromium_org/ppapi/cpp/private/
H A Dpass_file_handle.h13 namespace pp { namespace
79 } // namespace pp
H A Dudp_socket_private.cc15 namespace pp { namespace
137 } // namespace pp
H A Duma_private.cc13 namespace pp { namespace
45 HistogramCustomTimes(instance_, pp::Var(name).pp_var(),
57 HistogramCustomCounts(instance_, pp::Var(name).pp_var(),
67 HistogramEnumeration(instance_, pp::Var(name).pp_var(),
79 } // namespace pp
H A Dvar_private.h10 namespace pp { namespace
122 } // namespace pp
H A Dvideo_frame_private.h19 namespace pp { namespace
77 // information on how to handle pp::VideoFrame_Private. This converts
78 // PP_VideoFrame_Private to pp::VideoFrame_Private when passing to the plugin,
81 struct CallbackOutputTraits<pp::VideoFrame_Private> {
89 static inline pp::VideoFrame_Private StorageToPluginArg(StorageType& t) {
90 return pp::VideoFrame_Private(PASS_REF, t);
101 } // namespace pp
/external/chromium_org/ppapi/examples/font/
H A Dsimple_font.cc19 class MyInstance : public pp::Instance {
22 : pp::Instance(instance) {
25 virtual void DidChangeView(const pp::Rect& position, const pp::Rect& clip) {
30 pp::ImageData image(this, PP_IMAGEDATAFORMAT_BGRA_PREMUL, last_size_, true);
31 pp::Graphics2D graphics(this, last_size_, false);
34 pp::BrowserFontDescription desc;
37 pp::BrowserFont_Trusted font(this, desc);
40 pp::Rect text_clip(position.size()); // Use entire bounds for clip.
42 pp
112 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/examples/threading/
H A Dthreading.cc12 class MyInstance : public pp::Instance {
14 MyInstance(PP_Instance instance) : pp::Instance(instance) {
15 thread_ = new pp::SimpleThread(this);
30 virtual void DidChangeView(const pp::View& view) {
37 pp::CompletionCallbackFactory<MyInstance> factory_;
39 pp::SimpleThread* thread_;
43 class MyModule : public pp::Module {
45 MyModule() : pp::Module() {}
48 virtual pp::Instance* CreateInstance(PP_Instance instance) {
53 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dplugin.h38 namespace pp { namespace
57 class Plugin : public pp::Instance {
61 // ----- Methods inherited from pp::Instance:
69 virtual bool HandleDocumentLoad(const pp::URLLoader& url_loader);
91 const pp::CompletionCallback& init_done_cb);
120 pp::UMAPrivate& uma_interface() { return uma_interface_; }
124 // The browser will invoke the destructor via the pp::Instance
148 pp::CompletionCallback callback);
190 pp::CompletionCallbackFactory<Plugin> callback_factory_;
199 pp
[all...]
/external/chromium_org/ppapi/tests/extensions/background_keepalive/
H A Dbackground.cc14 class Instance : public pp::Instance {
17 pp::Instance(instance),
25 virtual void HandleMessage(const pp::Var& message_var) {
36 pp::MessageLoop loop = pp::MessageLoop::GetCurrent();
37 pp::CompletionCallback c = callback_factory_.NewCallback(
43 pp::CompletionCallbackFactory<Instance> callback_factory_;
48 class Module : public pp::Module {
50 Module() : pp::Module() {}
53 virtual pp
58 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/tests/manual/
H A Ddelete_plugin.cc14 class MyInstance : public pp::Instance {
16 MyInstance(PP_Instance instance) : pp::Instance(instance) {
30 pp::Module::Get()->core()->CallOnMainThread(100,
44 pp::Var code("deletePlugin()");
49 (const PPB_Instance_Trusted*)pp::Module::Get()->GetBrowserInterface(
56 pp::CompletionCallbackFactory<MyInstance> factory_;
59 class MyModule : public pp::Module {
61 MyModule() : pp::Module() {}
64 virtual pp::Instance* CreateInstance(PP_Instance instance) {
69 namespace pp { namespace
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_fullscreen.h17 namespace pp { namespace
19 } // namespace pp
30 virtual bool HandleInputEvent(const pp::InputEvent& event);
31 virtual void DidChangeView(const pp::View& view);
44 bool PaintPlugin(pp::Size size, ColorPremul color);
51 pp::Fullscreen screen_mode_;
52 pp::Size screen_size_;
53 pp::Rect normal_position_;
54 pp::Size painted_size_;
59 pp
[all...]
/external/chromium_org/ppapi/utility/graphics/
H A Dpaint_aggregator.h17 namespace pp { namespace
172 } // namespace pp
/external/chromium_org/ppapi/utility/threading/
H A Dsimple_thread.cc11 namespace pp { namespace
118 } // namespace pp

Completed in 6476 milliseconds

<<11121314151617181920>>