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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
991 // Indicate that speech recognizer has completed recognition. This will be | 991 // Indicate that speech recognizer has completed recognition. This will be |
992 // the last message sent in response to a | 992 // the last message sent in response to a |
993 // ViewHostMsg_SpeechInput_StartRecognition. | 993 // ViewHostMsg_SpeechInput_StartRecognition. |
994 IPC_MESSAGE_ROUTED1(ViewMsg_SpeechInput_RecognitionComplete, | 994 IPC_MESSAGE_ROUTED1(ViewMsg_SpeechInput_RecognitionComplete, |
995 int /* request id */) | 995 int /* request id */) |
996 | 996 |
997 // Notification that the device's orientation has changed. | 997 // Notification that the device's orientation has changed. |
998 IPC_MESSAGE_ROUTED1(ViewMsg_DeviceOrientationUpdated, | 998 IPC_MESSAGE_ROUTED1(ViewMsg_DeviceOrientationUpdated, |
999 ViewMsg_DeviceOrientationUpdated_Params) | 999 ViewMsg_DeviceOrientationUpdated_Params) |
1000 | 1000 |
| 1001 // WebFrameClient::openFileSystem response messages. |
| 1002 IPC_MESSAGE_ROUTED4(ViewMsg_OpenFileSystemRequest_Complete, |
| 1003 int /* request_id */, |
| 1004 bool /* accepted */, |
| 1005 string16 /* name */, |
| 1006 string16 /* root_path */) |
| 1007 |
1001 IPC_END_MESSAGES(View) | 1008 IPC_END_MESSAGES(View) |
1002 | 1009 |
1003 | 1010 |
1004 //----------------------------------------------------------------------------- | 1011 //----------------------------------------------------------------------------- |
1005 // TabContents messages | 1012 // TabContents messages |
1006 // These are messages sent from the renderer to the browser process. | 1013 // These are messages sent from the renderer to the browser process. |
1007 | 1014 |
1008 IPC_BEGIN_MESSAGES(ViewHost) | 1015 IPC_BEGIN_MESSAGES(ViewHost) |
1009 // Sent by the renderer when it is creating a new window. The browser creates | 1016 // Sent by the renderer when it is creating a new window. The browser creates |
1010 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is | 1017 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
(...skipping 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2643 // Device orientation services messages: | 2650 // Device orientation services messages: |
2644 | 2651 |
2645 // A RenderView requests to start receiving device orientation updates. | 2652 // A RenderView requests to start receiving device orientation updates. |
2646 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StartUpdating, | 2653 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StartUpdating, |
2647 int /* render_view_id */) | 2654 int /* render_view_id */) |
2648 | 2655 |
2649 // A RenderView requests to stop receiving device orientation updates. | 2656 // A RenderView requests to stop receiving device orientation updates. |
2650 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating, | 2657 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating, |
2651 int /* render_view_id */) | 2658 int /* render_view_id */) |
2652 | 2659 |
| 2660 //----------------------------------------------------------------------------- |
| 2661 // FileSystem API messages |
| 2662 // These are messages sent from the renderer to the browser process. |
| 2663 |
| 2664 // WebFrameClient::openFileSystem() message. |
| 2665 IPC_MESSAGE_CONTROL1(ViewHostMsg_OpenFileSystemRequest, |
| 2666 ViewHostMsg_OpenFileSystemRequest_Params) |
| 2667 |
2653 IPC_END_MESSAGES(ViewHost) | 2668 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |