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_THUNK_THUNK_H_ | 5 #ifndef PPAPI_THUNK_THUNK_H_ |
6 #define PPAPI_THUNK_THUNK_H_ | 6 #define PPAPI_THUNK_THUNK_H_ |
7 | 7 |
8 struct PPB_Audio; | 8 struct PPB_Audio; |
9 struct PPB_AudioConfig; | 9 struct PPB_AudioConfig; |
10 struct PPB_AudioTrusted; | 10 struct PPB_AudioTrusted; |
11 struct PPB_BrokerTrusted; | 11 struct PPB_BrokerTrusted; |
12 struct PPB_Buffer_Dev; | 12 struct PPB_Buffer_Dev; |
13 struct PPB_CharSet_Dev; | 13 struct PPB_CharSet_Dev; |
14 struct PPB_CursorControl_Dev; | 14 struct PPB_CursorControl_Dev; |
| 15 struct PPB_DirectoryReader_Dev; |
| 16 struct PPB_FileChooser_Dev; |
| 17 struct PPB_FileIO_Dev; |
| 18 struct PPB_FileIOTrusted_Dev; |
| 19 struct PPB_FileRef_Dev; |
| 20 struct PPB_FileSystem_Dev; |
| 21 struct PPB_Find_Dev; |
15 struct PPB_Font_Dev; | 22 struct PPB_Font_Dev; |
16 struct PPB_Graphics2D; | 23 struct PPB_Graphics2D; |
17 struct PPB_ImageData; | 24 struct PPB_ImageData; |
18 | 25 |
19 namespace ppapi { | 26 namespace ppapi { |
20 namespace thunk { | 27 namespace thunk { |
21 | 28 |
22 const PPB_Audio* GetPPB_Audio_Thunk(); | 29 const PPB_Audio* GetPPB_Audio_Thunk(); |
23 const PPB_AudioConfig* GetPPB_AudioConfig_Thunk(); | 30 const PPB_AudioConfig* GetPPB_AudioConfig_Thunk(); |
24 const PPB_AudioTrusted* GetPPB_AudioTrusted_Thunk(); | 31 const PPB_AudioTrusted* GetPPB_AudioTrusted_Thunk(); |
25 const PPB_BrokerTrusted* GetPPB_Broker_Thunk(); | 32 const PPB_BrokerTrusted* GetPPB_Broker_Thunk(); |
26 const PPB_Buffer_Dev* GetPPB_Buffer_Thunk(); | 33 const PPB_Buffer_Dev* GetPPB_Buffer_Thunk(); |
27 const PPB_CharSet_Dev* GetPPB_CharSet_Thunk(); | 34 const PPB_CharSet_Dev* GetPPB_CharSet_Thunk(); |
28 const PPB_CursorControl_Dev* GetPPB_CursorControl_Thunk(); | 35 const PPB_CursorControl_Dev* GetPPB_CursorControl_Thunk(); |
| 36 const PPB_DirectoryReader_Dev* GetPPB_DirectoryReader_Thunk(); |
| 37 const PPB_FileChooser_Dev* GetPPB_FileChooser_Thunk(); |
| 38 const PPB_FileIO_Dev* GetPPB_FileIO_Thunk(); |
| 39 const PPB_FileIOTrusted_Dev* GetPPB_FileIOTrusted_Thunk(); |
| 40 const PPB_FileRef_Dev* GetPPB_FileRef_Thunk(); |
| 41 const PPB_FileSystem_Dev* GetPPB_FileSystem_Thunk(); |
| 42 const PPB_Find_Dev* GetPPB_Find_Thunk(); |
29 const PPB_Font_Dev* GetPPB_Font_Thunk(); | 43 const PPB_Font_Dev* GetPPB_Font_Thunk(); |
30 const PPB_Graphics2D* GetPPB_Graphics2D_Thunk(); | 44 const PPB_Graphics2D* GetPPB_Graphics2D_Thunk(); |
31 const PPB_ImageData* GetPPB_ImageData_Thunk(); | 45 const PPB_ImageData* GetPPB_ImageData_Thunk(); |
32 | 46 |
33 } // namespace thunk | 47 } // namespace thunk |
34 } // namespace ppapi | 48 } // namespace ppapi |
35 | 49 |
36 #endif // PPAPI_THUNK_THUNK_H_ | 50 #endif // PPAPI_THUNK_THUNK_H_ |
37 | 51 |
38 | 52 |
OLD | NEW |