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 "base/file_util_proxy.h" | 8 #include "base/files/file_util_proxy.h" |
9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
11 #include "ipc/ipc_platform_file.h" | 11 #include "ipc/ipc_platform_file.h" |
12 #include "webkit/fileapi/file_system_types.h" | 12 #include "webkit/fileapi/file_system_types.h" |
13 | 13 |
14 #define IPC_MESSAGE_START FileSystemMsgStart | 14 #define IPC_MESSAGE_START FileSystemMsgStart |
15 | 15 |
16 IPC_STRUCT_TRAITS_BEGIN(base::FileUtilProxy::Entry) | 16 IPC_STRUCT_TRAITS_BEGIN(base::FileUtilProxy::Entry) |
17 IPC_STRUCT_TRAITS_MEMBER(name) | 17 IPC_STRUCT_TRAITS_MEMBER(name) |
18 IPC_STRUCT_TRAITS_MEMBER(is_directory) | 18 IPC_STRUCT_TRAITS_MEMBER(is_directory) |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 GURL /* file path */, | 154 GURL /* file path */, |
155 FilePath /* platform_path */) | 155 FilePath /* platform_path */) |
156 | 156 |
157 // Pre- and post-update notifications for ppapi implementation. | 157 // Pre- and post-update notifications for ppapi implementation. |
158 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, | 158 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, |
159 GURL /* file_path */) | 159 GURL /* file_path */) |
160 | 160 |
161 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, | 161 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, |
162 GURL /* file_path */, | 162 GURL /* file_path */, |
163 int64 /* delta */) | 163 int64 /* delta */) |
OLD | NEW |