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 // IPC messages for the file system. | 5 // IPC messages for the file system. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "googleurl/src/gurl.h" | |
9 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
10 #include "ipc/ipc_platform_file.h" | 9 #include "ipc/ipc_platform_file.h" |
| 10 #include "url/gurl.h" |
11 #include "webkit/common/fileapi/directory_entry.h" | 11 #include "webkit/common/fileapi/directory_entry.h" |
12 #include "webkit/common/fileapi/file_system_types.h" | 12 #include "webkit/common/fileapi/file_system_types.h" |
13 #include "webkit/common/quota/quota_types.h" | 13 #include "webkit/common/quota/quota_types.h" |
14 | 14 |
15 #define IPC_MESSAGE_START FileSystemMsgStart | 15 #define IPC_MESSAGE_START FileSystemMsgStart |
16 | 16 |
17 IPC_STRUCT_TRAITS_BEGIN(fileapi::DirectoryEntry) | 17 IPC_STRUCT_TRAITS_BEGIN(fileapi::DirectoryEntry) |
18 IPC_STRUCT_TRAITS_MEMBER(name) | 18 IPC_STRUCT_TRAITS_MEMBER(name) |
19 IPC_STRUCT_TRAITS_MEMBER(is_directory) | 19 IPC_STRUCT_TRAITS_MEMBER(is_directory) |
20 IPC_STRUCT_TRAITS_END() | 20 IPC_STRUCT_TRAITS_END() |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 GURL /* file path */, | 166 GURL /* file path */, |
167 base::FilePath /* platform_path */) | 167 base::FilePath /* platform_path */) |
168 | 168 |
169 // Pre- and post-update notifications for ppapi implementation. | 169 // Pre- and post-update notifications for ppapi implementation. |
170 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, | 170 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, |
171 GURL /* file_path */) | 171 GURL /* file_path */) |
172 | 172 |
173 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, | 173 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, |
174 GURL /* file_path */, | 174 GURL /* file_path */, |
175 int64 /* delta */) | 175 int64 /* delta */) |
OLD | NEW |