| 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 2823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2834 FilePath /* src path */, | 2834 FilePath /* src path */, |
| 2835 FilePath /* dest path */) | 2835 FilePath /* dest path */) |
| 2836 | 2836 |
| 2837 // WebFileSystem::copy() message. | 2837 // WebFileSystem::copy() message. |
| 2838 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Copy, | 2838 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Copy, |
| 2839 int /* request_id */, | 2839 int /* request_id */, |
| 2840 FilePath /* src path */, | 2840 FilePath /* src path */, |
| 2841 FilePath /* dest path */) | 2841 FilePath /* dest path */) |
| 2842 | 2842 |
| 2843 // WebFileSystem::remove() message. | 2843 // WebFileSystem::remove() message. |
| 2844 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_Remove, | 2844 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Remove, |
| 2845 int /* request_id */, | 2845 int /* request_id */, |
| 2846 FilePath /* path */) | 2846 FilePath /* path */, |
| 2847 bool /* recursive */) |
| 2847 | 2848 |
| 2848 // WebFileSystem::readMetadata() message. | 2849 // WebFileSystem::readMetadata() message. |
| 2849 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadMetadata, | 2850 IPC_MESSAGE_CONTROL2(ViewHostMsg_FileSystem_ReadMetadata, |
| 2850 int /* request_id */, | 2851 int /* request_id */, |
| 2851 FilePath /* path */) | 2852 FilePath /* path */) |
| 2852 | 2853 |
| 2853 // WebFileSystem::create() message. | 2854 // WebFileSystem::create() message. |
| 2854 IPC_MESSAGE_CONTROL5(ViewHostMsg_FileSystem_Create, | 2855 IPC_MESSAGE_CONTROL5(ViewHostMsg_FileSystem_Create, |
| 2855 int /* request_id */, | 2856 int /* request_id */, |
| 2856 FilePath /* path */, | 2857 FilePath /* path */, |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2919 | 2920 |
| 2920 // Client-Side Phishing Detector --------------------------------------------- | 2921 // Client-Side Phishing Detector --------------------------------------------- |
| 2921 // Inform the browser that the current URL is phishing according to the | 2922 // Inform the browser that the current URL is phishing according to the |
| 2922 // client-side phishing detector. | 2923 // client-side phishing detector. |
| 2923 IPC_MESSAGE_ROUTED3(ViewHostMsg_DetectedPhishingSite, | 2924 IPC_MESSAGE_ROUTED3(ViewHostMsg_DetectedPhishingSite, |
| 2924 GURL /* phishing_url */, | 2925 GURL /* phishing_url */, |
| 2925 double /* phishing_score */, | 2926 double /* phishing_score */, |
| 2926 SkBitmap /* thumbnail */) | 2927 SkBitmap /* thumbnail */) |
| 2927 | 2928 |
| 2928 IPC_END_MESSAGES(ViewHost) | 2929 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |