| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1087 | 1087 |
| 1088 // Relay a request from assistive technology to set focus to a given node. | 1088 // Relay a request from assistive technology to set focus to a given node. |
| 1089 IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityFocus, | 1089 IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityFocus, |
| 1090 int /* object id */) | 1090 int /* object id */) |
| 1091 | 1091 |
| 1092 // Relay a request from assistive technology to perform the default action | 1092 // Relay a request from assistive technology to perform the default action |
| 1093 // on a given node. | 1093 // on a given node. |
| 1094 IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction, | 1094 IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction, |
| 1095 int /* object id */) | 1095 int /* object id */) |
| 1096 | 1096 |
| 1097 // Relay a request from assistive technology to change the scroll position |
| 1098 // of a scrollable container (like the whole page, an iframe, etc.). |
| 1099 IPC_MESSAGE_ROUTED3(ViewMsg_AccessibilityChangeScrollPosition, |
| 1100 int /* object id */, |
| 1101 int /* New x scroll position */, |
| 1102 int /* New y scroll position */) |
| 1103 |
| 1104 // Relay a request from assistive technology to set the cursor or |
| 1105 // selection within an editable text element. |
| 1106 IPC_MESSAGE_ROUTED3(ViewMsg_AccessibilitySetTextSelection, |
| 1107 int /* object id */, |
| 1108 int /* New start offset */, |
| 1109 int /* New end offset */) |
| 1110 |
| 1097 // Tells the render view that a ViewHostMsg_AccessibilityNotifications | 1111 // Tells the render view that a ViewHostMsg_AccessibilityNotifications |
| 1098 // message was processed and it can send addition notifications. | 1112 // message was processed and it can send addition notifications. |
| 1099 IPC_MESSAGE_ROUTED0(ViewMsg_AccessibilityNotifications_ACK) | 1113 IPC_MESSAGE_ROUTED0(ViewMsg_AccessibilityNotifications_ACK) |
| 1100 | 1114 |
| 1101 // Reply to ViewHostMsg_OpenChannelToPpapiBroker | 1115 // Reply to ViewHostMsg_OpenChannelToPpapiBroker |
| 1102 // Tells the renderer that the channel to the broker has been created. | 1116 // Tells the renderer that the channel to the broker has been created. |
| 1103 IPC_MESSAGE_ROUTED3(ViewMsg_PpapiBrokerChannelCreated, | 1117 IPC_MESSAGE_ROUTED3(ViewMsg_PpapiBrokerChannelCreated, |
| 1104 int /* request_id */, | 1118 int /* request_id */, |
| 1105 base::ProcessHandle /* broker_process_handle */, | 1119 base::ProcessHandle /* broker_process_handle */, |
| 1106 IPC::ChannelHandle /* handle */) | 1120 IPC::ChannelHandle /* handle */) |
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1916 media::MediaLogEvent /* event */) | 1930 media::MediaLogEvent /* event */) |
| 1917 | 1931 |
| 1918 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1932 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
| 1919 // being sent back. | 1933 // being sent back. |
| 1920 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1934 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
| 1921 | 1935 |
| 1922 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1936 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
| 1923 // whenever the mouse is unlocked (which may or may not be caused by | 1937 // whenever the mouse is unlocked (which may or may not be caused by |
| 1924 // ViewHostMsg_UnlockMouse). | 1938 // ViewHostMsg_UnlockMouse). |
| 1925 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1939 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
| OLD | NEW |