| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // Defines the IPC messages used by the automation interface. | 5 // Defines the IPC messages used by the automation interface. |
| 6 | 6 |
| 7 // This header is meant to be included in multiple passes, hence no traditional | 7 // This header is meant to be included in multiple passes, hence no traditional |
| 8 // header guard. | 8 // header guard. |
| 9 // See ipc_message_macros.h for explanation of the macros and passes. | 9 // See ipc_message_macros.h for explanation of the macros and passes. |
| 10 | 10 |
| (...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 // This message requests the type of the window with the given handle. The | 1148 // This message requests the type of the window with the given handle. The |
| 1149 // return value contains the type (Browser::Type), or -1 if the request | 1149 // return value contains the type (Browser::Type), or -1 if the request |
| 1150 // failed. | 1150 // failed. |
| 1151 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_Type, int, int) | 1151 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_Type, int, int) |
| 1152 | 1152 |
| 1153 // Opens a new browser window of a specific type. | 1153 // Opens a new browser window of a specific type. |
| 1154 IPC_SYNC_MESSAGE_ROUTED2_0(AutomationMsg_OpenNewBrowserWindowOfType, | 1154 IPC_SYNC_MESSAGE_ROUTED2_0(AutomationMsg_OpenNewBrowserWindowOfType, |
| 1155 int /* Type (Browser::Type) */, | 1155 int /* Type (Browser::Type) */, |
| 1156 bool /* show */ ) | 1156 bool /* show */ ) |
| 1157 | 1157 |
| 1158 // This message requests that the mouse be moved to this location, in | |
| 1159 // window coordinate space. | |
| 1160 // Request: | |
| 1161 // int - the handle of the window that's the context for this click | |
| 1162 // gfx::Point - the location to move to | |
| 1163 IPC_MESSAGE_ROUTED2(AutomationMsg_WindowMouseMove, int, gfx::Point) | |
| 1164 | 1158 |
| 1165 IPC_END_MESSAGES(Automation) | 1159 IPC_END_MESSAGES(Automation) |
| OLD | NEW |