| 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 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1594 | 1594 |
| 1595 // Notification that the page has an OpenSearch description document | 1595 // Notification that the page has an OpenSearch description document |
| 1596 // associated with it. | 1596 // associated with it. |
| 1597 IPC_MESSAGE_ROUTED3(ViewHostMsg_PageHasOSDD, | 1597 IPC_MESSAGE_ROUTED3(ViewHostMsg_PageHasOSDD, |
| 1598 int32 /* page_id */, | 1598 int32 /* page_id */, |
| 1599 GURL /* url of OS description document */, | 1599 GURL /* url of OS description document */, |
| 1600 bool /* autodetected */) | 1600 bool /* autodetected */) |
| 1601 | 1601 |
| 1602 // Find out if the given url's security origin is installed as a search | 1602 // Find out if the given url's security origin is installed as a search |
| 1603 // provider. | 1603 // provider. |
| 1604 IPC_SYNC_MESSAGE_ROUTED1_1( | 1604 IPC_SYNC_MESSAGE_ROUTED2_1( |
| 1605 ViewHostMsg_GetSearchProviderInstallState, | 1605 ViewHostMsg_GetSearchProviderInstallState, |
| 1606 GURL, | 1606 GURL /* page url */, |
| 1607 GURL /* inquiry url */, |
| 1607 ViewHostMsg_GetSearchProviderInstallState_Params /* install */) | 1608 ViewHostMsg_GetSearchProviderInstallState_Params /* install */) |
| 1608 | 1609 |
| 1609 // Required for updating text input state. | 1610 // Required for updating text input state. |
| 1610 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeUpdateTextInputState, | 1611 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeUpdateTextInputState, |
| 1611 WebKit::WebTextInputType, /* text_input_type */ | 1612 WebKit::WebTextInputType, /* text_input_type */ |
| 1612 gfx::Rect /* caret_rect */) | 1613 gfx::Rect /* caret_rect */) |
| 1613 | 1614 |
| 1614 // Required for cancelling an ongoing input method composition. | 1615 // Required for cancelling an ongoing input method composition. |
| 1615 IPC_MESSAGE_ROUTED0(ViewHostMsg_ImeCancelComposition) | 1616 IPC_MESSAGE_ROUTED0(ViewHostMsg_ImeCancelComposition) |
| 1616 | 1617 |
| (...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2644 | 2645 |
| 2645 // A RenderView requests to start receiving device orientation updates. | 2646 // A RenderView requests to start receiving device orientation updates. |
| 2646 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StartUpdating, | 2647 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StartUpdating, |
| 2647 int /* render_view_id */) | 2648 int /* render_view_id */) |
| 2648 | 2649 |
| 2649 // A RenderView requests to stop receiving device orientation updates. | 2650 // A RenderView requests to stop receiving device orientation updates. |
| 2650 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating, | 2651 IPC_MESSAGE_CONTROL1(ViewHostMsg_DeviceOrientation_StopUpdating, |
| 2651 int /* render_view_id */) | 2652 int /* render_view_id */) |
| 2652 | 2653 |
| 2653 IPC_END_MESSAGES(ViewHost) | 2654 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |