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

Side by Side Diff: ppapi/api/pp_file_info.idl

Issue 13220002: [PPAPI] Fix a bunch of spelling mistakes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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/api/pp_errors.idl ('k') | ppapi/api/pp_input_event.idl » ('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) 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 /** 6 /**
7 * This file defines three enumerations for use in the PPAPI C file IO APIs. 7 * This file defines three enumerations for use in the PPAPI C file IO APIs.
8 */ 8 */
9 9
10 /** 10 /**
(...skipping 11 matching lines...) Expand all
22 22
23 /** 23 /**
24 * The <code>PP_FileSystemType</code> enum contains file system type constants. 24 * The <code>PP_FileSystemType</code> enum contains file system type constants.
25 */ 25 */
26 [assert_size(4)] 26 [assert_size(4)]
27 enum PP_FileSystemType { 27 enum PP_FileSystemType {
28 /** For identified invalid return values */ 28 /** For identified invalid return values */
29 PP_FILESYSTEMTYPE_INVALID = 0, 29 PP_FILESYSTEMTYPE_INVALID = 0,
30 /** For external file system types */ 30 /** For external file system types */
31 PP_FILESYSTEMTYPE_EXTERNAL = 1, 31 PP_FILESYSTEMTYPE_EXTERNAL = 1,
32 /** For local persistant file system types */ 32 /** For local persistent file system types */
33 PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2, 33 PP_FILESYSTEMTYPE_LOCALPERSISTENT = 2,
34 /** For local temporary file system types */ 34 /** For local temporary file system types */
35 PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3 35 PP_FILESYSTEMTYPE_LOCALTEMPORARY = 3
36 }; 36 };
37 37
38 /** 38 /**
39 * The <code>PP_FileInfo</code> struct represents all information about a file, 39 * The <code>PP_FileInfo</code> struct represents all information about a file,
40 * such as size, type, and creation time. 40 * such as size, type, and creation time.
41 */ 41 */
42 [assert_size(40)] 42 [assert_size(40)]
(...skipping 22 matching lines...) Expand all
65 * This value represents the last time the file was accessed. 65 * This value represents the last time the file was accessed.
66 */ 66 */
67 PP_Time last_access_time; 67 PP_Time last_access_time;
68 68
69 /** 69 /**
70 * This value represents the last time the file was modified. 70 * This value represents the last time the file was modified.
71 */ 71 */
72 PP_Time last_modified_time; 72 PP_Time last_modified_time;
73 }; 73 };
74 74
OLDNEW
« no previous file with comments | « ppapi/api/pp_errors.idl ('k') | ppapi/api/pp_input_event.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698