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

Side by Side Diff: tests/ppapi_test_lib/get_browser_interface.h

Issue 7167018: Migrating test/ppapi_file_system to messaging (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
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
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698