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 <stdint.h> |
| 9 |
8 #include "base/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
| 11 #include "build/build_config.h" |
9 #include "ppapi/c/dev/pp_video_dev.h" | 12 #include "ppapi/c/dev/pp_video_dev.h" |
10 #include "ppapi/c/dev/ppb_file_chooser_dev.h" | 13 #include "ppapi/c/dev/ppb_file_chooser_dev.h" |
11 #include "ppapi/c/dev/ppb_truetype_font_dev.h" | 14 #include "ppapi/c/dev/ppb_truetype_font_dev.h" |
12 #include "ppapi/c/pp_bool.h" | 15 #include "ppapi/c/pp_bool.h" |
13 #include "ppapi/c/pp_instance.h" | 16 #include "ppapi/c/pp_instance.h" |
14 #include "ppapi/c/pp_resource.h" | 17 #include "ppapi/c/pp_resource.h" |
15 #include "ppapi/c/ppb_audio.h" | 18 #include "ppapi/c/ppb_audio.h" |
16 #include "ppapi/c/ppb_audio_config.h" | 19 #include "ppapi/c/ppb_audio_config.h" |
17 #include "ppapi/c/ppb_file_system.h" | 20 #include "ppapi/c/ppb_file_system.h" |
18 #include "ppapi/c/ppb_graphics_3d.h" | 21 #include "ppapi/c/ppb_graphics_3d.h" |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 PP_VideoDecoder_Profile profile) = 0; | 204 PP_VideoDecoder_Profile profile) = 0; |
202 #endif // !defined(OS_NACL) | 205 #endif // !defined(OS_NACL) |
203 | 206 |
204 static const ApiID kApiID = API_ID_RESOURCE_CREATION; | 207 static const ApiID kApiID = API_ID_RESOURCE_CREATION; |
205 }; | 208 }; |
206 | 209 |
207 } // namespace thunk | 210 } // namespace thunk |
208 } // namespace ppapi | 211 } // namespace ppapi |
209 | 212 |
210 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ | 213 #endif // PPAPI_THUNK_RESOURCE_CREATION_API_H_ |
OLD | NEW |