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

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

Issue 343080: Revert "Handle GTK enter and leave notification events and pass them to WebKit as " (Closed)
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/test/automation/window_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 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
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)
OLDNEW
« no previous file with comments | « chrome/chrome.gyp ('k') | chrome/test/automation/window_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698