| 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 2840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2851 FilePath /* src path */, | 2851 FilePath /* src path */, |
| 2852 FilePath /* dest path */) | 2852 FilePath /* dest path */) |
| 2853 | 2853 |
| 2854 // WebFileSystem::copy() message. | 2854 // WebFileSystem::copy() message. |
| 2855 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Copy, | 2855 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Copy, |
| 2856 int /* request_id */, | 2856 int /* request_id */, |
| 2857 FilePath /* src path */, | 2857 FilePath /* src path */, |
| 2858 FilePath /* dest path */) | 2858 FilePath /* dest path */) |
| 2859 | 2859 |
| 2860 // WebFileSystem::remove() message. | 2860 // WebFileSystem::remove() message. |
| 2861 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_Remove, | 2861 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Remove, |
| 2862 int /* request_id */, | 2862 int /* request_id */, |
| 2863 FilePath /* path */) | 2863 FilePath /* path */, |
| 2864 bool /* recursive */) |
| 2864 | 2865 |
| 2865 // WebFileSystem::readMetadata() message. | 2866 // WebFileSystem::readMetadata() message. |
| 2866 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadMetadata, | 2867 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadMetadata, |
| 2867 int /* request_id */, | 2868 int /* request_id */, |
| 2868 FilePath /* path */) | 2869 FilePath /* path */) |
| 2869 | 2870 |
| 2870 // WebFileSystem::create() message. | 2871 // WebFileSystem::create() message. |
| 2871 IPC_MESSAGE_CONTROL5(ViewHostMsg_FileSystem_Create, | 2872 IPC_MESSAGE_CONTROL5(ViewHostMsg_FileSystem_Create, |
| 2872 int /* request_id */, | 2873 int /* request_id */, |
| 2873 FilePath /* path */, | 2874 FilePath /* path */, |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2943 SkBitmap /* thumbnail */) | 2944 SkBitmap /* thumbnail */) |
| 2944 | 2945 |
| 2945 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied | 2946 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied |
| 2946 // to ViewMsg_ScriptEvalRequest. The result is true if the script evaluated | 2947 // to ViewMsg_ScriptEvalRequest. The result is true if the script evaluated |
| 2947 // to the boolean result true, false otherwise. | 2948 // to the boolean result true, false otherwise. |
| 2948 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, | 2949 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, |
| 2949 int /* id */, | 2950 int /* id */, |
| 2950 bool /* result */) | 2951 bool /* result */) |
| 2951 | 2952 |
| 2952 IPC_END_MESSAGES(ViewHost) | 2953 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |