| 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 2825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2836 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Exists, | 2836 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Exists, |
| 2837 int /* request_id */, | 2837 int /* request_id */, |
| 2838 FilePath /* path */, | 2838 FilePath /* path */, |
| 2839 bool /* is_directory */) | 2839 bool /* is_directory */) |
| 2840 | 2840 |
| 2841 // WebFileSystem::readDirectory() message. | 2841 // WebFileSystem::readDirectory() message. |
| 2842 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadDirectory, | 2842 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadDirectory, |
| 2843 int /* request_id */, | 2843 int /* request_id */, |
| 2844 FilePath /* path */) | 2844 FilePath /* path */) |
| 2845 | 2845 |
| 2846 // Pepper's Touch() message. |
| 2847 IPC_MESSAGE_CONTROL4(ViewHostMsg_FileSystem_TouchFile, |
| 2848 int /* request_id */, |
| 2849 FilePath /* path */, |
| 2850 base::Time /* last_access_time */, |
| 2851 base::Time /* last_modified_time */) |
| 2852 |
| 2846 //--------------------------------------------------------------------------- | 2853 //--------------------------------------------------------------------------- |
| 2847 // Blob messages: | 2854 // Blob messages: |
| 2848 | 2855 |
| 2849 // Registers a blob URL referring to the specified blob data. | 2856 // Registers a blob URL referring to the specified blob data. |
| 2850 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrl, | 2857 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrl, |
| 2851 GURL /* url */, | 2858 GURL /* url */, |
| 2852 scoped_refptr<webkit_blob::BlobData> /* blob_data */) | 2859 scoped_refptr<webkit_blob::BlobData> /* blob_data */) |
| 2853 | 2860 |
| 2854 // Registers a blob URL referring to the blob data identified by the specified | 2861 // Registers a blob URL referring to the blob data identified by the specified |
| 2855 // source URL. | 2862 // source URL. |
| 2856 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, | 2863 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, |
| 2857 GURL /* url */, | 2864 GURL /* url */, |
| 2858 GURL /* src_url */) | 2865 GURL /* src_url */) |
| 2859 | 2866 |
| 2860 // Unregister a blob URL. | 2867 // Unregister a blob URL. |
| 2861 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) | 2868 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) |
| 2862 | 2869 |
| 2863 // Suggest results ----------------------------------------------------------- | 2870 // Suggest results ----------------------------------------------------------- |
| 2864 | 2871 |
| 2865 IPC_MESSAGE_ROUTED2(ViewHostMsg_SetSuggestResult, | 2872 IPC_MESSAGE_ROUTED2(ViewHostMsg_SetSuggestResult, |
| 2866 int32 /* page_id */, | 2873 int32 /* page_id */, |
| 2867 std::string /* suggest */) | 2874 std::string /* suggest */) |
| 2868 | 2875 |
| 2869 IPC_END_MESSAGES(ViewHost) | 2876 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |