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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 GURL /* file path */, | 144 GURL /* file path */, |
145 FilePath /* platform_path */) | 145 FilePath /* platform_path */) |
146 | 146 |
147 // Pre- and post-update notifications for ppapi implementation. | 147 // Pre- and post-update notifications for ppapi implementation. |
148 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, | 148 IPC_MESSAGE_CONTROL1(FileSystemHostMsg_WillUpdate, |
149 GURL /* file_path */) | 149 GURL /* file_path */) |
150 | 150 |
151 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, | 151 IPC_MESSAGE_CONTROL2(FileSystemHostMsg_DidUpdate, |
152 GURL /* file_path */, | 152 GURL /* file_path */, |
153 int64 /* delta */) | 153 int64 /* delta */) |
OLD | NEW |