| OLD | NEW |
| 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 #ifndef CONTENT_COMMON_FILEAPI_FILE_SYSTEM_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_FILEAPI_FILE_SYSTEM_MESSAGES_H_ |
| 7 |
| 5 // IPC messages for the file system. | 8 // IPC messages for the file system. |
| 6 // Multiply-included message file, hence no include guard. | 9 // Multiply-included message file, hence no include guard. |
| 7 | 10 |
| 8 #include <stdint.h> | 11 #include <stdint.h> |
| 9 | 12 |
| 10 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
| 11 #include "ipc/ipc_platform_file.h" | 14 #include "ipc/ipc_platform_file.h" |
| 12 #include "storage/common/fileapi/directory_entry.h" | 15 #include "storage/common/fileapi/directory_entry.h" |
| 13 #include "storage/common/fileapi/file_system_info.h" | 16 #include "storage/common/fileapi/file_system_info.h" |
| 14 #include "storage/common/fileapi/file_system_types.h" | 17 #include "storage/common/fileapi/file_system_types.h" |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 // Renderers are expected to send this message after having processed | 165 // Renderers are expected to send this message after having processed |
| 163 // the FileSystemMsg_DidCreateSnapshotFile message. In particular, | 166 // the FileSystemMsg_DidCreateSnapshotFile message. In particular, |
| 164 // after having created a BlobDataHandle backed by the snapshot file. | 167 // after having created a BlobDataHandle backed by the snapshot file. |
| 165 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_DidReceiveSnapshotFile, | 168 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_DidReceiveSnapshotFile, |
| 166 int /* request_id */) | 169 int /* request_id */) |
| 167 | 170 |
| 168 // For Pepper's URL loader. | 171 // For Pepper's URL loader. |
| 169 IPC_SYNC_MESSAGE_CONTROL1_1(FileSystemHostMsg_SyncGetPlatformPath, | 172 IPC_SYNC_MESSAGE_CONTROL1_1(FileSystemHostMsg_SyncGetPlatformPath, |
| 170 GURL /* file path */, | 173 GURL /* file path */, |
| 171 base::FilePath /* platform_path */) | 174 base::FilePath /* platform_path */) |
| 175 |
| 176 #endif // CONTENT_COMMON_FILEAPI_FILE_SYSTEM_MESSAGES_H_ |
| OLD | NEW |