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

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

Issue 473: Readding UI test I pulled yesterday; hopefully the bots will like it more now... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/xp_frame.cc ('k') | chrome/test/automation/browser_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 int /* tab_handle */) 745 int /* tab_handle */)
746 IPC_MESSAGE_ROUTED1(AutomationMsg_FindWindowVisibilityResponse, 746 IPC_MESSAGE_ROUTED1(AutomationMsg_FindWindowVisibilityResponse,
747 bool /* is_visible */) 747 bool /* is_visible */)
748 748
749 // Where is the Find window located. |x| and |y| will be -1, -1 on failure. 749 // Where is the Find window located. |x| and |y| will be -1, -1 on failure.
750 IPC_MESSAGE_ROUTED1(AutomationMsg_FindWindowLocationRequest, 750 IPC_MESSAGE_ROUTED1(AutomationMsg_FindWindowLocationRequest,
751 int /* tab_handle */) 751 int /* tab_handle */)
752 IPC_MESSAGE_ROUTED2(AutomationMsg_FindWindowLocationResponse, 752 IPC_MESSAGE_ROUTED2(AutomationMsg_FindWindowLocationResponse,
753 int, /* x */ 753 int, /* x */
754 int /* y */) 754 int /* y */)
755
756 // Is the Bookmark bar visible? The response will indicate whether it is
757 // visible or not and whether it is being animated into (or out of its place).
758 IPC_MESSAGE_ROUTED1(AutomationMsg_BookmarkBarVisibilityRequest,
759 int /* browser_handle */)
760 IPC_MESSAGE_ROUTED2(AutomationMsg_BookmarkBarVisibilityResponse,
761 bool, /* is_visible */
762 bool /* still_animating */)
755 IPC_END_MESSAGES(Automation) 763 IPC_END_MESSAGES(Automation)
756 764
OLDNEW
« no previous file with comments | « chrome/browser/xp_frame.cc ('k') | chrome/test/automation/browser_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698