| 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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1093 | 1093 | 
| 1094 // Relay a request from assistive technology to set focus to a given node. | 1094 // Relay a request from assistive technology to set focus to a given node. | 
| 1095 IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityFocus, | 1095 IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityFocus, | 
| 1096                     int /* object id */) | 1096                     int /* object id */) | 
| 1097 | 1097 | 
| 1098 // Relay a request from assistive technology to perform the default action | 1098 // Relay a request from assistive technology to perform the default action | 
| 1099 // on a given node. | 1099 // on a given node. | 
| 1100 IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction, | 1100 IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction, | 
| 1101                     int /* object id */) | 1101                     int /* object id */) | 
| 1102 | 1102 | 
|  | 1103 // Relay a request from assistive technology to change the scroll position | 
|  | 1104 // of a scrollable container (like the whole page, an iframe, etc.). | 
|  | 1105 IPC_MESSAGE_ROUTED3(ViewMsg_AccessibilityChangeScrollPosition, | 
|  | 1106                     int /* object id */, | 
|  | 1107                     int /* New x scroll position */, | 
|  | 1108                     int /* New y scroll position */) | 
|  | 1109 | 
|  | 1110 // Relay a request from assistive technology to set the cursor or | 
|  | 1111 // selection within an editable text element. | 
|  | 1112 IPC_MESSAGE_ROUTED3(ViewMsg_AccessibilitySetTextSelection, | 
|  | 1113                     int /* object id */, | 
|  | 1114                     int /* New start offset */, | 
|  | 1115                     int /* New end offset */) | 
|  | 1116 | 
| 1103 // Tells the render view that a ViewHostMsg_AccessibilityNotifications | 1117 // Tells the render view that a ViewHostMsg_AccessibilityNotifications | 
| 1104 // message was processed and it can send addition notifications. | 1118 // message was processed and it can send addition notifications. | 
| 1105 IPC_MESSAGE_ROUTED0(ViewMsg_AccessibilityNotifications_ACK) | 1119 IPC_MESSAGE_ROUTED0(ViewMsg_AccessibilityNotifications_ACK) | 
| 1106 | 1120 | 
| 1107 // Reply to ViewHostMsg_OpenChannelToPpapiBroker | 1121 // Reply to ViewHostMsg_OpenChannelToPpapiBroker | 
| 1108 // Tells the renderer that the channel to the broker has been created. | 1122 // Tells the renderer that the channel to the broker has been created. | 
| 1109 IPC_MESSAGE_ROUTED3(ViewMsg_PpapiBrokerChannelCreated, | 1123 IPC_MESSAGE_ROUTED3(ViewMsg_PpapiBrokerChannelCreated, | 
| 1110                     int /* request_id */, | 1124                     int /* request_id */, | 
| 1111                     base::ProcessHandle /* broker_process_handle */, | 1125                     base::ProcessHandle /* broker_process_handle */, | 
| 1112                     IPC::ChannelHandle /* handle */) | 1126                     IPC::ChannelHandle /* handle */) | 
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1922                      media::MediaLogEvent /* event */) | 1936                      media::MediaLogEvent /* event */) | 
| 1923 | 1937 | 
| 1924 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1938 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 
| 1925 // being sent back. | 1939 // being sent back. | 
| 1926 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1940 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 
| 1927 | 1941 | 
| 1928 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1942 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 
| 1929 // whenever the mouse is unlocked (which may or may not be caused by | 1943 // whenever the mouse is unlocked (which may or may not be caused by | 
| 1930 // ViewHostMsg_UnlockMouse). | 1944 // ViewHostMsg_UnlockMouse). | 
| 1931 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1945 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 
| OLD | NEW | 
|---|