OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1025 int /* request_id */, | 1025 int /* request_id */, |
1026 bool /* accepted */, | 1026 bool /* accepted */, |
1027 string16 /* name */, | 1027 string16 /* name */, |
1028 string16 /* root_path */) | 1028 string16 /* root_path */) |
1029 | 1029 |
1030 // WebFileSystem response messages. | 1030 // WebFileSystem response messages. |
1031 IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidSucceed, | 1031 IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidSucceed, |
1032 int /* request_id */) | 1032 int /* request_id */) |
1033 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidReadMetadata, | 1033 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidReadMetadata, |
1034 int /* request_id */, | 1034 int /* request_id */, |
1035 file_util::FileInfo) | 1035 base::PlatformFileInfo) |
1036 IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidReadDirectory, | 1036 IPC_MESSAGE_CONTROL1(ViewMsg_FileSystem_DidReadDirectory, |
1037 ViewMsg_FileSystem_DidReadDirectory_Params) | 1037 ViewMsg_FileSystem_DidReadDirectory_Params) |
1038 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidFail, | 1038 IPC_MESSAGE_CONTROL2(ViewMsg_FileSystem_DidFail, |
1039 int /* request_id */, | 1039 int /* request_id */, |
1040 WebKit::WebFileError /* error_code */) | 1040 WebKit::WebFileError /* error_code */) |
1041 | 1041 |
1042 IPC_END_MESSAGES(View) | 1042 IPC_END_MESSAGES(View) |
1043 | 1043 |
1044 | 1044 |
1045 //----------------------------------------------------------------------------- | 1045 //----------------------------------------------------------------------------- |
(...skipping 1742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2788 // Registers a blob URL referring to the blob data identified by the specified | 2788 // Registers a blob URL referring to the blob data identified by the specified |
2789 // source URL. | 2789 // source URL. |
2790 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, | 2790 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, |
2791 GURL /* url */, | 2791 GURL /* url */, |
2792 GURL /* src_url */) | 2792 GURL /* src_url */) |
2793 | 2793 |
2794 // Unregister a blob URL. | 2794 // Unregister a blob URL. |
2795 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) | 2795 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) |
2796 | 2796 |
2797 IPC_END_MESSAGES(ViewHost) | 2797 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |