OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2011 The Native Client 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 // Defines helper functions for all interfaces supported by the Native Client | 5 // Defines helper functions for all interfaces supported by the Native Client |
6 // proxy. | 6 // proxy. |
7 | 7 |
8 #ifndef NATIVE_CLIENT_TESTS_PPAPI_TEST_PPB_TEMPLATE_GET_BROWSER_INTERFACE_H | 8 #ifndef NATIVE_CLIENT_TESTS_PPAPI_TEST_PPB_TEMPLATE_GET_BROWSER_INTERFACE_H |
9 #define NATIVE_CLIENT_TESTS_PPAPI_TEST_PPB_TEMPLATE_GET_BROWSER_INTERFACE_H | 9 #define NATIVE_CLIENT_TESTS_PPAPI_TEST_PPB_TEMPLATE_GET_BROWSER_INTERFACE_H |
10 | 10 |
11 struct PPB_Context3D_Dev; | 11 struct PPB_Context3D_Dev; |
12 struct PPB_Core; | 12 struct PPB_Core; |
13 struct PPB_FileIO_Dev; | 13 struct PPB_FileIO_Dev; |
14 struct PPB_FileSystem_Dev; | |
14 struct PPB_Graphics2D; | 15 struct PPB_Graphics2D; |
15 struct PPB_ImageData; | 16 struct PPB_ImageData; |
16 struct PPB_Instance; | 17 struct PPB_Instance; |
17 struct PPB_Messaging; | 18 struct PPB_Messaging; |
18 struct PPB_Scrollbar_Dev; | 19 struct PPB_Scrollbar_Dev; |
19 struct PPB_Surface3D_Dev; | 20 struct PPB_Surface3D_Dev; |
20 struct PPB_URLLoader; | 21 struct PPB_URLLoader; |
21 struct PPB_URLRequestInfo; | 22 struct PPB_URLRequestInfo; |
22 struct PPB_URLResponseInfo; | 23 struct PPB_URLResponseInfo; |
23 struct PPB_Var_Deprecated; | 24 struct PPB_Var_Deprecated; |
(...skipping 19 matching lines...) Expand all Loading... | |
43 | 44 |
44 const PPB_Var_Deprecated* PPBVarDeprecated(); | 45 const PPB_Var_Deprecated* PPBVarDeprecated(); |
45 | 46 |
46 // | 47 // |
47 // Experimental (aka Dev) interfaces. | 48 // Experimental (aka Dev) interfaces. |
48 // Lookup returns NULL if the interface is not available. | 49 // Lookup returns NULL if the interface is not available. |
49 // | 50 // |
50 | 51 |
51 const PPB_Context3D_Dev* PPBContext3DDev(); | 52 const PPB_Context3D_Dev* PPBContext3DDev(); |
52 const PPB_FileIO_Dev* PPBFileIODev(); | 53 const PPB_FileIO_Dev* PPBFileIODev(); |
54 const PPB_FileSystem_Dev* PPBFileSystemDev(); | |
David Springer
2011/06/15 21:40:27
I thought these were supposed to be added in the i
Sang Ahn
2011/06/15 22:27:42
I didn't now that. I put that here since the refe
| |
53 const PPB_Scrollbar_Dev* PPBScrollbarDev(); | 55 const PPB_Scrollbar_Dev* PPBScrollbarDev(); |
54 const PPB_Surface3D_Dev* PPBSurface3DDev(); | 56 const PPB_Surface3D_Dev* PPBSurface3DDev(); |
55 | 57 |
56 #endif // NATIVE_CLIENT_TESTS_PPAPI_TEST_PPB_TEMPLATE_GET_BROWSER_INTERFACE_H | 58 #endif // NATIVE_CLIENT_TESTS_PPAPI_TEST_PPB_TEMPLATE_GET_BROWSER_INTERFACE_H |
OLD | NEW |