Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: chrome/test/automation/automation_messages_internal.h

Issue 195106: Implement per-test timeout for UI tests. (Closed)
Patch Set: sync with trunk Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/test/automation/automation_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698