OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ipc/ipc_message_macros.h" | 9 #include "ipc/ipc_message_macros.h" |
10 #include "ipc/ipc_platform_file.h" | 10 #include "ipc/ipc_platform_file.h" |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 // WebFileWriter::cancel() message. | 125 // WebFileWriter::cancel() message. |
126 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_CancelWrite, | 126 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_CancelWrite, |
127 int /* request id */, | 127 int /* request id */, |
128 int /* id of request to cancel */) | 128 int /* id of request to cancel */) |
129 | 129 |
130 // Pepper's OpenFile message. | 130 // Pepper's OpenFile message. |
131 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_OpenFile, | 131 IPC_MESSAGE_CONTROL3(FileSystemHostMsg_OpenFile, |
132 int /* request id */, | 132 int /* request id */, |
133 GURL /* file path */, | 133 GURL /* file path */, |
134 int /* file flags */) | 134 int /* file flags */) |
| 135 |
| 136 // Pre- and post-update notifications for ppapi implementation. |
| 137 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, |
| 138 GURL /* file_path */) |
| 139 |
| 140 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, |
| 141 GURL /* file_path */, |
| 142 int64 /* delta */) |
OLD | NEW |