OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_THUNK_RESOURCE_CREATION_API_H_ | 5 #ifndef PPAPI_THUNK_RESOURCE_CREATION_API_H_ |
6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_ | 6 #define PPAPI_THUNK_RESOURCE_CREATION_API_H_ |
7 | 7 |
8 #include "base/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
9 #include "ppapi/c/dev/pp_video_dev.h" | 9 #include "ppapi/c/dev/pp_video_dev.h" |
10 #include "ppapi/c/dev/ppb_file_chooser_dev.h" | 10 #include "ppapi/c/dev/ppb_file_chooser_dev.h" |
11 #include "ppapi/c/dev/ppb_truetype_font_dev.h" | 11 #include "ppapi/c/dev/ppb_truetype_font_dev.h" |
12 #include "ppapi/c/pp_bool.h" | 12 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_instance.h" | 13 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_resource.h" | 14 #include "ppapi/c/pp_resource.h" |
15 #include "ppapi/c/ppb_audio.h" | 15 #include "ppapi/c/ppb_audio.h" |
16 #include "ppapi/c/ppb_audio_config.h" | 16 #include "ppapi/c/ppb_audio_config.h" |
17 #include "ppapi/c/ppb_file_system.h" | 17 #include "ppapi/c/ppb_file_system.h" |
18 #include "ppapi/c/ppb_graphics_3d.h" | 18 #include "ppapi/c/ppb_graphics_3d.h" |
19 #include "ppapi/c/ppb_image_data.h" | 19 #include "ppapi/c/ppb_image_data.h" |
20 #include "ppapi/c/ppb_input_event.h" | 20 #include "ppapi/c/ppb_input_event.h" |
21 #include "ppapi/c/ppb_network_monitor.h" | 21 #include "ppapi/c/ppb_network_monitor.h" |
22 #include "ppapi/c/ppb_websocket.h" | 22 #include "ppapi/c/ppb_websocket.h" |
23 #include "ppapi/c/private/pp_private_font_charset.h" | 23 #include "ppapi/c/private/pp_private_font_charset.h" |
24 #include "ppapi/shared_impl/api_id.h" | 24 #include "ppapi/shared_impl/api_id.h" |
25 #include "ppapi/shared_impl/ppb_image_data_shared.h" | 25 #include "ppapi/shared_impl/ppb_image_data_shared.h" |
26 | 26 |
27 struct PP_Flash_Menu; | 27 struct PP_Flash_Menu; |
28 struct PP_FontDescription_Dev; | |
29 struct PP_BrowserFont_Trusted_Description; | 28 struct PP_BrowserFont_Trusted_Description; |
30 struct PP_NetAddress_IPv4; | 29 struct PP_NetAddress_IPv4; |
31 struct PP_NetAddress_IPv6; | 30 struct PP_NetAddress_IPv6; |
32 struct PP_NetAddress_Private; | 31 struct PP_NetAddress_Private; |
33 struct PP_Size; | 32 struct PP_Size; |
34 | 33 |
35 namespace gpu { | 34 namespace gpu { |
36 struct Capabilities; | 35 struct Capabilities; |
37 } | 36 } |
38 | 37 |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 PP_VideoDecoder_Profile profile) = 0; | 201 PP_VideoDecoder_Profile profile) = 0; |
203 #endif // !defined(OS_NACL) | 202 #endif // !defined(OS_NACL) |
204 | 203 |
205 static const ApiID kApiID = API_ID_RESOURCE_CREATION; | 204 static const ApiID kApiID = API_ID_RESOURCE_CREATION; |
206 }; | 205 }; |
207 | 206 |
208 } // namespace thunk | 207 } // namespace thunk |
209 } // namespace ppapi | 208 } // namespace ppapi |
210 | 209 |
211 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ | 210 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ |
OLD | NEW |