| OLD | NEW |
| 1 /* Copyright (c) 2011 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 /** |
| 11 * The <code>PP_FileType</code> enum contains file type constants. | 11 * The <code>PP_FileType</code> enum contains file type constants. |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |