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

Side by Side Diff: ppapi/c/ppb_file_system.h

Issue 7342032: Revert 92302 - First pass at revving stable pepper interfaces to 1.0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 5 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/c/ppb_file_ref.h ('k') | ppapi/c/ppb_graphics_2d.h » ('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_C_PPB_FILE_SYSTEM_H_ 5 #ifndef PPAPI_C_PPB_FILE_SYSTEM_H_
6 #define PPAPI_C_PPB_FILE_SYSTEM_H_ 6 #define PPAPI_C_PPB_FILE_SYSTEM_H_
7 7
8 #include "ppapi/c/pp_bool.h" 8 #include "ppapi/c/pp_bool.h"
9 #include "ppapi/c/pp_file_info.h" 9 #include "ppapi/c/pp_file_info.h"
10 #include "ppapi/c/pp_instance.h" 10 #include "ppapi/c/pp_instance.h"
11 #include "ppapi/c/pp_resource.h" 11 #include "ppapi/c/pp_resource.h"
12 #include "ppapi/c/pp_stdint.h" 12 #include "ppapi/c/pp_stdint.h"
13 #include "ppapi/c/pp_time.h" 13 #include "ppapi/c/pp_time.h"
14 14
15 /** 15 /**
16 * @file 16 * @file
17 * This file defines the API to create a file system associated with a file. 17 * This file defines the API to create a file system associated with a file.
18 */ 18 */
19 19
20 struct PP_CompletionCallback; 20 struct PP_CompletionCallback;
21 21
22 #define PPB_FILESYSTEM_INTERFACE_0_7 "PPB_FileSystem;0.7" 22 #define PPB_FILESYSTEM_INTERFACE_0_7 "PPB_FileSystem;0.7"
23 #define PPB_FILESYSTEM_INTERFACE_1_0 "PPB_FileSystem;1.0" 23 #define PPB_FILESYSTEM_INTERFACE PPB_FILESYSTEM_INTERFACE_0_7
24 #define PPB_FILESYSTEM_INTERFACE PPB_FILESYSTEM_INTERFACE_1_0
25 24
26 /** 25 /**
27 * @addtogroup Structs 26 * @addtogroup Structs
28 * @{ 27 * @{
29 */ 28 */
30 29
31 /** 30 /**
32 * The <code>PPB_FileSystem</code> struct identifies the file system type 31 * The <code>PPB_FileSystem</code> struct identifies the file system type
33 * associated with a file. 32 * associated with a file.
34 */ 33 */
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 * is not a valid file system. It is valid to call this function even before 86 * is not a valid file system. It is valid to call this function even before
88 * Open() completes. 87 * Open() completes.
89 */ 88 */
90 PP_FileSystemType (*GetType)(PP_Resource file_system); 89 PP_FileSystemType (*GetType)(PP_Resource file_system);
91 }; 90 };
92 /** 91 /**
93 * @} 92 * @}
94 */ 93 */
95 94
96 #endif /* PPAPI_C_PPB_FILE_SYSTEM_H_ */ 95 #endif /* PPAPI_C_PPB_FILE_SYSTEM_H_ */
OLDNEW
« no previous file with comments | « ppapi/c/ppb_file_ref.h ('k') | ppapi/c/ppb_graphics_2d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698