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 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1102 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_TerminateSession, int, bool) | 1102 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_TerminateSession, int, bool) |
1103 | 1103 |
1104 // Returns whether the window is maximized. | 1104 // Returns whether the window is maximized. |
1105 // Request: | 1105 // Request: |
1106 // int - the handle of the window | 1106 // int - the handle of the window |
1107 // Response: | 1107 // Response: |
1108 // bool - true if the window is maximized | 1108 // bool - true if the window is maximized |
1109 // bool - true if query is successful | 1109 // bool - true if query is successful |
1110 IPC_SYNC_MESSAGE_ROUTED1_2(AutomationMsg_IsWindowMaximized, int, bool, bool) | 1110 IPC_SYNC_MESSAGE_ROUTED1_2(AutomationMsg_IsWindowMaximized, int, bool, bool) |
1111 | 1111 |
| 1112 // Tells the automation provider to quit after number of milliseconds passed |
| 1113 // as the first parameter. |
| 1114 IPC_MESSAGE_ROUTED1(AutomationMsg_QuitAfterTimeout, int) |
| 1115 |
1112 IPC_END_MESSAGES(Automation) | 1116 IPC_END_MESSAGES(Automation) |
OLD | NEW |