OLD | NEW |
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 "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "ppapi/c/pp_bool.h" | 9 #include "ppapi/c/pp_bool.h" |
10 #include "ppapi/c/pp_completion_callback.h" | 10 #include "ppapi/c/pp_completion_callback.h" |
11 #include "ppapi/c/pp_instance.h" | 11 #include "ppapi/c/pp_instance.h" |
12 #include "ppapi/c/pp_module.h" | 12 #include "ppapi/c/pp_module.h" |
13 #include "ppapi/c/pp_resource.h" | 13 #include "ppapi/c/pp_resource.h" |
14 #include "ppapi/c/pp_size.h" | 14 #include "ppapi/c/pp_size.h" |
15 #include "ppapi/c/pp_var.h" | 15 #include "ppapi/c/pp_var.h" |
| 16 #include "ppapi/c/ppb_image_data.h" |
16 #include "ppapi/proxy/interface_proxy.h" | 17 #include "ppapi/proxy/interface_proxy.h" |
17 #include "ppapi/proxy/serialized_structs.h" | 18 #include "ppapi/proxy/serialized_structs.h" |
18 #include "ppapi/shared_impl/ppb_image_data_shared.h" | 19 #include "ppapi/shared_impl/ppb_image_data_shared.h" |
19 #include "ppapi/shared_impl/resource.h" | 20 #include "ppapi/shared_impl/resource.h" |
20 #include "ppapi/thunk/ppb_image_data_api.h" | 21 #include "ppapi/thunk/ppb_image_data_api.h" |
21 | 22 |
22 struct PPB_ImageData; | |
23 class TransportDIB; | 23 class TransportDIB; |
24 | 24 |
25 namespace skia { | 25 namespace skia { |
26 class PlatformCanvas; | 26 class PlatformCanvas; |
27 } | 27 } |
28 | 28 |
29 namespace ppapi { | 29 namespace ppapi { |
30 | 30 |
31 class HostResource; | 31 class HostResource; |
32 | 32 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 std::string* image_data_desc, | 95 std::string* image_data_desc, |
96 ImageHandle* result_image_handle); | 96 ImageHandle* result_image_handle); |
97 | 97 |
98 DISALLOW_COPY_AND_ASSIGN(PPB_ImageData_Proxy); | 98 DISALLOW_COPY_AND_ASSIGN(PPB_ImageData_Proxy); |
99 }; | 99 }; |
100 | 100 |
101 } // namespace proxy | 101 } // namespace proxy |
102 } // namespace ppapi | 102 } // namespace ppapi |
103 | 103 |
104 #endif // PPAPI_PPB_IMAGE_DATA_PROXY_H_ | 104 #endif // PPAPI_PPB_IMAGE_DATA_PROXY_H_ |
OLD | NEW |