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

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

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 5
6 /* From pp_file_info.idl modified Thu Mar 28 11:11:01 2013. */ 6 /* From pp_file_info.idl modified Thu Mar 28 11:11:01 2013. */
7 7
8 #ifndef PPAPI_C_PP_FILE_INFO_H_ 8 #ifndef PPAPI_C_PP_FILE_INFO_H_
9 #define PPAPI_C_PP_FILE_INFO_H_ 9 #define PPAPI_C_PP_FILE_INFO_H_
10 10
(...skipping 28 matching lines...) Expand all
39 * The <code>PP_FileSystemType</code> enum contains file system type constants. 39 * The <code>PP_FileSystemType</code> enum contains file system type constants.
40 */ 40 */
41 typedef enum { 41 typedef enum {
42 /** For identified invalid return values */ 42 /** For identified invalid return values */
43 PP_FILESYSTEMTYPE_INVALID = 0, 43 PP_FILESYSTEMTYPE_INVALID = 0,
44 /** For external file system types */ 44 /** For external file system types */
45 PP_FILESYSTEMTYPE_EXTERNAL = 1, 45 PP_FILESYSTEMTYPE_EXTERNAL = 1,
46 /** For local persistent file system types */ 46 /** For local persistent file system types */
47 PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2, 47 PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2,
48 /** For local temporary file system types */ 48 /** For local temporary file system types */
49 PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3 49 PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3,
50 /** For isolated file system types */
51 PP_FILESYSTEMTYPE_ISOLATED = 4
palmer 2013/05/02 21:30:09 Do these have to be kept in sync with the IDL file
victorhsieh 2013/05/03 17:26:58 Oops, forgot to run generator.
50 } PP_FileSystemType; 52 } PP_FileSystemType;
51 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4); 53 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType, 4);
52 /** 54 /**
53 * @} 55 * @}
54 */ 56 */
55 57
56 /** 58 /**
57 * @addtogroup Structs 59 * @addtogroup Structs
58 * @{ 60 * @{
59 */ 61 */
(...skipping 27 matching lines...) Expand all
87 */ 89 */
88 PP_Time last_modified_time; 90 PP_Time last_modified_time;
89 }; 91 };
90 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_FileInfo, 40); 92 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_FileInfo, 40);
91 /** 93 /**
92 * @} 94 * @}
93 */ 95 */
94 96
95 #endif /* PPAPI_C_PP_FILE_INFO_H_ */ 97 #endif /* PPAPI_C_PP_FILE_INFO_H_ */
96 98
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698