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

Side by Side Diff: ppapi/thunk/thunk.h

Issue 7149026: Implement flash menu and net connector resources using the API/thunk model. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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/thunk/resource_creation_api.h ('k') | webkit/plugins/ppapi/plugin_module.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_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_BufferTrusted; 13 struct PPB_BufferTrusted;
14 struct PPB_CharSet_Dev; 14 struct PPB_CharSet_Dev;
15 struct PPB_CursorControl_Dev; 15 struct PPB_CursorControl_Dev;
16 struct PPB_DirectoryReader_Dev; 16 struct PPB_DirectoryReader_Dev;
17 struct PPB_FileChooser_Dev; 17 struct PPB_FileChooser_Dev;
18 struct PPB_FileIO_Dev; 18 struct PPB_FileIO_Dev;
19 struct PPB_FileIOTrusted_Dev; 19 struct PPB_FileIOTrusted_Dev;
20 struct PPB_FileRef_Dev; 20 struct PPB_FileRef_Dev;
21 struct PPB_FileSystem_Dev; 21 struct PPB_FileSystem_Dev;
22 struct PPB_Find_Dev; 22 struct PPB_Find_Dev;
23 struct PPB_Flash_Menu;
24 struct PPB_Flash_NetConnector;
23 struct PPB_Font_Dev; 25 struct PPB_Font_Dev;
24 struct PPB_Graphics2D; 26 struct PPB_Graphics2D;
25 struct PPB_ImageData; 27 struct PPB_ImageData;
28 struct PPB_ImageDataTrusted;
26 29
27 namespace ppapi { 30 namespace ppapi {
28 namespace thunk { 31 namespace thunk {
29 32
30 const PPB_Audio* GetPPB_Audio_Thunk(); 33 const PPB_Audio* GetPPB_Audio_Thunk();
31 const PPB_AudioConfig* GetPPB_AudioConfig_Thunk(); 34 const PPB_AudioConfig* GetPPB_AudioConfig_Thunk();
32 const PPB_AudioTrusted* GetPPB_AudioTrusted_Thunk(); 35 const PPB_AudioTrusted* GetPPB_AudioTrusted_Thunk();
33 const PPB_BrokerTrusted* GetPPB_Broker_Thunk(); 36 const PPB_BrokerTrusted* GetPPB_Broker_Thunk();
34 const PPB_Buffer_Dev* GetPPB_Buffer_Thunk(); 37 const PPB_Buffer_Dev* GetPPB_Buffer_Thunk();
35 const PPB_BufferTrusted* GetPPB_BufferTrusted_Thunk(); 38 const PPB_BufferTrusted* GetPPB_BufferTrusted_Thunk();
36 const PPB_CharSet_Dev* GetPPB_CharSet_Thunk(); 39 const PPB_CharSet_Dev* GetPPB_CharSet_Thunk();
37 const PPB_CursorControl_Dev* GetPPB_CursorControl_Thunk(); 40 const PPB_CursorControl_Dev* GetPPB_CursorControl_Thunk();
38 const PPB_DirectoryReader_Dev* GetPPB_DirectoryReader_Thunk(); 41 const PPB_DirectoryReader_Dev* GetPPB_DirectoryReader_Thunk();
39 const PPB_FileChooser_Dev* GetPPB_FileChooser_Thunk(); 42 const PPB_FileChooser_Dev* GetPPB_FileChooser_Thunk();
40 const PPB_FileIO_Dev* GetPPB_FileIO_Thunk(); 43 const PPB_FileIO_Dev* GetPPB_FileIO_Thunk();
41 const PPB_FileIOTrusted_Dev* GetPPB_FileIOTrusted_Thunk(); 44 const PPB_FileIOTrusted_Dev* GetPPB_FileIOTrusted_Thunk();
42 const PPB_FileRef_Dev* GetPPB_FileRef_Thunk(); 45 const PPB_FileRef_Dev* GetPPB_FileRef_Thunk();
43 const PPB_FileSystem_Dev* GetPPB_FileSystem_Thunk(); 46 const PPB_FileSystem_Dev* GetPPB_FileSystem_Thunk();
44 const PPB_Find_Dev* GetPPB_Find_Thunk(); 47 const PPB_Find_Dev* GetPPB_Find_Thunk();
48 const PPB_Flash_Menu* GetPPB_Flash_Menu_Thunk();
49 const PPB_Flash_NetConnector* GetPPB_Flash_NetConnector_Thunk();
45 const PPB_Font_Dev* GetPPB_Font_Thunk(); 50 const PPB_Font_Dev* GetPPB_Font_Thunk();
46 const PPB_Graphics2D* GetPPB_Graphics2D_Thunk(); 51 const PPB_Graphics2D* GetPPB_Graphics2D_Thunk();
47 const PPB_ImageData* GetPPB_ImageData_Thunk(); 52 const PPB_ImageData* GetPPB_ImageData_Thunk();
53 const PPB_ImageDataTrusted* GetPPB_ImageDataTrusted_Thunk();
48 54
49 } // namespace thunk 55 } // namespace thunk
50 } // namespace ppapi 56 } // namespace ppapi
51 57
52 #endif // PPAPI_THUNK_THUNK_H_ 58 #endif // PPAPI_THUNK_THUNK_H_
OLDNEW
« no previous file with comments | « ppapi/thunk/resource_creation_api.h ('k') | webkit/plugins/ppapi/plugin_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698