| 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 2891 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2902 | 2902 |
| 2903 // A RenderView requests to stop receiving device orientation updates. | 2903 // A RenderView requests to stop receiving device orientation updates. |
| 2904 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating, | 2904 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating, |
| 2905 int /* render_view_id */) | 2905 int /* render_view_id */) |
| 2906 | 2906 |
| 2907 //--------------------------------------------------------------------------- | 2907 //--------------------------------------------------------------------------- |
| 2908 // FileSystem API messages | 2908 // FileSystem API messages |
| 2909 // These are messages sent from the renderer to the browser process. | 2909 // These are messages sent from the renderer to the browser process. |
| 2910 | 2910 |
| 2911 // WebFrameClient::openFileSystem() message. | 2911 // WebFrameClient::openFileSystem() message. |
| 2912 IPC_MESSAGE_CONTROL4(ViewHostMsg_OpenFileSystemRequest, | 2912 IPC_MESSAGE_CONTROL5(ViewHostMsg_OpenFileSystemRequest, |
| 2913 int /* request_id */, | 2913 int /* request_id */, |
| 2914 GURL /* origin_url */, | 2914 GURL /* origin_url */, |
| 2915 fileapi::FileSystemType /* type */, | 2915 fileapi::FileSystemType /* type */, |
| 2916 int64 /* requested_size */) | 2916 int64 /* requested_size */, |
| 2917 bool /* create */) |
| 2917 | 2918 |
| 2918 // WebFileSystem::move() message. | 2919 // WebFileSystem::move() message. |
| 2919 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Move, | 2920 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Move, |
| 2920 int /* request_id */, | 2921 int /* request_id */, |
| 2921 FilePath /* src path */, | 2922 FilePath /* src path */, |
| 2922 FilePath /* dest path */) | 2923 FilePath /* dest path */) |
| 2923 | 2924 |
| 2924 // WebFileSystem::copy() message. | 2925 // WebFileSystem::copy() message. |
| 2925 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Copy, | 2926 IPC_MESSAGE_CONTROL3(ViewHostMsg_FileSystem_Copy, |
| 2926 int /* request_id */, | 2927 int /* request_id */, |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3056 base::PlatformFileInfo, /* info */ | 3057 base::PlatformFileInfo, /* info */ |
| 3057 base::PlatformFileError /* error_code */) | 3058 base::PlatformFileError /* error_code */) |
| 3058 | 3059 |
| 3059 // Get the directory's contents. | 3060 // Get the directory's contents. |
| 3060 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 3061 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
| 3061 FilePath /* path */, | 3062 FilePath /* path */, |
| 3062 PepperDirContents, /* contents */ | 3063 PepperDirContents, /* contents */ |
| 3063 base::PlatformFileError /* error_code */) | 3064 base::PlatformFileError /* error_code */) |
| 3064 | 3065 |
| 3065 IPC_END_MESSAGES(ViewHost) | 3066 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |