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/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" |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 // File system messages sent from the child process to the browser. | 53 // File system messages sent from the child process to the browser. |
54 | 54 |
55 // WebFrameClient::openFileSystem() message. | 55 // WebFrameClient::openFileSystem() message. |
56 IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Open, | 56 IPC_MESSAGE_CONTROL5(FileSystemHostMsg_Open, |
57 int /* request_id */, | 57 int /* request_id */, |
58 GURL /* origin_url */, | 58 GURL /* origin_url */, |
59 fileapi::FileSystemType /* type */, | 59 fileapi::FileSystemType /* type */, |
60 int64 /* requested_size */, | 60 int64 /* requested_size */, |
61 bool /* create */) | 61 bool /* create */) |
62 | 62 |
| 63 // WebFrameClient::deleteFileSystem() message. |
| 64 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_DeleteFileSystem, |
| 65 int /* request_id */, |
| 66 GURL /* origin_url */, |
| 67 fileapi::FileSystemType /* type */) |
| 68 |
63 // WebFileSystem::move() message. | 69 // WebFileSystem::move() message. |
64 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Move, | 70 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Move, |
65 int /* request_id */, | 71 int /* request_id */, |
66 GURL /* src path */, | 72 GURL /* src path */, |
67 GURL /* dest path */) | 73 GURL /* dest path */) |
68 | 74 |
69 // WebFileSystem::copy() message. | 75 // WebFileSystem::copy() message. |
70 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Copy, | 76 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_Copy, |
71 int /* request_id */, | 77 int /* request_id */, |
72 GURL /* src path */, | 78 GURL /* src path */, |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 GURL /* file path */, | 154 GURL /* file path */, |
149 FilePath /* platform_path */) | 155 FilePath /* platform_path */) |
150 | 156 |
151 // Pre- and post-update notifications for ppapi implementation. | 157 // Pre- and post-update notifications for ppapi implementation. |
152 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, | 158 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, |
153 GURL /* file_path */) | 159 GURL /* file_path */) |
154 | 160 |
155 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, | 161 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, |
156 GURL /* file_path */, | 162 GURL /* file_path */, |
157 int64 /* delta */) | 163 int64 /* delta */) |
OLD | NEW |