| 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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 // incognito mode. | 939 // incognito mode. |
| 940 IPC_MESSAGE_CONTROL1(ViewMsg_SetIsIncognitoProcess, | 940 IPC_MESSAGE_CONTROL1(ViewMsg_SetIsIncognitoProcess, |
| 941 bool /* is_incognito_processs */) | 941 bool /* is_incognito_processs */) |
| 942 | 942 |
| 943 // Notification that the list of extensions with web extents has been updated. | 943 // Notification that the list of extensions with web extents has been updated. |
| 944 IPC_MESSAGE_CONTROL1(ViewMsg_ExtensionExtentsUpdated, | 944 IPC_MESSAGE_CONTROL1(ViewMsg_ExtensionExtentsUpdated, |
| 945 ViewMsg_ExtensionExtentsUpdated_Params) | 945 ViewMsg_ExtensionExtentsUpdated_Params) |
| 946 | 946 |
| 947 // Request a tree of Accessibility data from the render process. | 947 // Request a tree of Accessibility data from the render process. |
| 948 IPC_MESSAGE_ROUTED0(ViewMsg_GetAccessibilityTree) | 948 IPC_MESSAGE_ROUTED0(ViewMsg_GetAccessibilityTree) |
| 949 |
| 950 // Relay a request from assistive technology to set focus to a given node. |
| 951 IPC_MESSAGE_ROUTED1(ViewMsg_SetAccessibilityFocus, |
| 952 int /* object id */) |
| 953 |
| 954 // Relay a request from assistive technology to perform the default action |
| 955 // on a given node. |
| 956 IPC_MESSAGE_ROUTED1(ViewMsg_AccessibilityDoDefaultAction, |
| 957 int /* object id */) |
| 958 |
| 949 IPC_END_MESSAGES(View) | 959 IPC_END_MESSAGES(View) |
| 950 | 960 |
| 951 | 961 |
| 952 //----------------------------------------------------------------------------- | 962 //----------------------------------------------------------------------------- |
| 953 // TabContents messages | 963 // TabContents messages |
| 954 // These are messages sent from the renderer to the browser process. | 964 // These are messages sent from the renderer to the browser process. |
| 955 | 965 |
| 956 IPC_BEGIN_MESSAGES(ViewHost) | 966 IPC_BEGIN_MESSAGES(ViewHost) |
| 957 // Sent by the renderer when it is creating a new window. The browser creates | 967 // Sent by the renderer when it is creating a new window. The browser creates |
| 958 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is | 968 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
| (...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2366 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2376 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
| 2367 int /* render_view_id */, | 2377 int /* render_view_id */, |
| 2368 int /* bridge_id */) | 2378 int /* bridge_id */) |
| 2369 | 2379 |
| 2370 // Send the tree of accessibility data to the browser, where it's cached | 2380 // Send the tree of accessibility data to the browser, where it's cached |
| 2371 // in order to respond to OS accessibility queries immediately. | 2381 // in order to respond to OS accessibility queries immediately. |
| 2372 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2382 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
| 2373 webkit_glue::WebAccessibility) | 2383 webkit_glue::WebAccessibility) |
| 2374 | 2384 |
| 2375 IPC_END_MESSAGES(ViewHost) | 2385 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |