Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: ppapi/proxy/ppb_image_data_proxy.h

Issue 6286070: Remove all uses of the global Dispatcher Get function. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/ppb_graphics_2d_proxy.cc ('k') | ppapi/proxy/ppb_image_data_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PPAPI_PPB_IMAGE_DATA_PROXY_H_ 5 #ifndef PPAPI_PPB_IMAGE_DATA_PROXY_H_
6 #define PPAPI_PPB_IMAGE_DATA_PROXY_H_ 6 #define PPAPI_PPB_IMAGE_DATA_PROXY_H_
7 7
8 #include "ppapi/c/pp_bool.h" 8 #include "ppapi/c/pp_bool.h"
9 #include "ppapi/c/pp_completion_callback.h" 9 #include "ppapi/c/pp_completion_callback.h"
10 #include "ppapi/c/pp_instance.h" 10 #include "ppapi/c/pp_instance.h"
11 #include "ppapi/c/pp_module.h" 11 #include "ppapi/c/pp_module.h"
12 #include "ppapi/c/pp_resource.h" 12 #include "ppapi/c/pp_resource.h"
13 #include "ppapi/c/pp_size.h" 13 #include "ppapi/c/pp_size.h"
14 #include "ppapi/c/pp_var.h" 14 #include "ppapi/c/pp_var.h"
15 #include "ppapi/proxy/interface_proxy.h" 15 #include "ppapi/proxy/interface_proxy.h"
16 #include "ppapi/proxy/serialized_structs.h" 16 #include "ppapi/proxy/serialized_structs.h"
17 17
18 struct PPB_ImageData; 18 struct PPB_ImageData;
19 19
20 namespace pp { 20 namespace pp {
21 namespace proxy { 21 namespace proxy {
22 22
23 class HostResource; 23 class HostResource;
24 24
25 class PPB_ImageData_Proxy : public InterfaceProxy { 25 class PPB_ImageData_Proxy : public InterfaceProxy {
26 public: 26 public:
27 PPB_ImageData_Proxy(Dispatcher* dispatcher, const void* target_interface); 27 PPB_ImageData_Proxy(Dispatcher* dispatcher, const void* target_interface);
28 virtual ~PPB_ImageData_Proxy(); 28 virtual ~PPB_ImageData_Proxy();
29 29
30 static const Info* GetInfo();
31
30 const PPB_ImageData* ppb_image_data_target() const { 32 const PPB_ImageData* ppb_image_data_target() const {
31 return static_cast<const PPB_ImageData*>(target_interface()); 33 return static_cast<const PPB_ImageData*>(target_interface());
32 } 34 }
33 35
34 // InterfaceProxy implementation. 36 // InterfaceProxy implementation.
35 virtual const void* GetSourceInterface() const;
36 virtual InterfaceID GetInterfaceId() const;
37 virtual bool OnMessageReceived(const IPC::Message& msg); 37 virtual bool OnMessageReceived(const IPC::Message& msg);
38 38
39 private: 39 private:
40 // Message handlers. 40 // Message handlers.
41 void OnMsgGetNativeImageDataFormat(int32* result); 41 void OnMsgGetNativeImageDataFormat(int32* result);
42 void OnMsgIsImageDataFormatSupported(int32 format, PP_Bool* result); 42 void OnMsgIsImageDataFormatSupported(int32 format, PP_Bool* result);
43 void OnMsgCreate(PP_Instance instance, 43 void OnMsgCreate(PP_Instance instance,
44 int32_t format, 44 int32_t format,
45 const PP_Size& size, 45 const PP_Size& size,
46 PP_Bool init_to_zero, 46 PP_Bool init_to_zero,
47 HostResource* result, 47 HostResource* result,
48 std::string* image_data_desc, 48 std::string* image_data_desc,
49 ImageHandle* result_image_handle); 49 ImageHandle* result_image_handle);
50 }; 50 };
51 51
52 } // namespace proxy 52 } // namespace proxy
53 } // namespace pp 53 } // namespace pp
54 54
55 #endif // PPAPI_PPB_IMAGE_DATA_PROXY_H_ 55 #endif // PPAPI_PPB_IMAGE_DATA_PROXY_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_graphics_2d_proxy.cc ('k') | ppapi/proxy/ppb_image_data_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698