diff options
Diffstat (limited to 'chrome/test/automation/automation_messages_internal.h')
-rw-r--r-- | chrome/test/automation/automation_messages_internal.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/chrome/test/automation/automation_messages_internal.h b/chrome/test/automation/automation_messages_internal.h index 2c42449..49aa1a5 100644 --- a/chrome/test/automation/automation_messages_internal.h +++ b/chrome/test/automation/automation_messages_internal.h @@ -1001,13 +1001,6 @@ IPC_BEGIN_MESSAGES(Automation) IPC_SYNC_MESSAGE_ROUTED0_1(AutomationMsg_GetFilteredInetHitCount, int /* hit_count */) - IPC_MESSAGE_ROUTED5(AutomationMsg_AttachExternalTab, - int /* tab_handle */, - int /* existing_tab_handle */, - gfx::NativeWindow /* Tab container window */, - gfx::NativeWindow /* Tab window */, - int /* disposition */) - #if defined(OS_LINUX) || defined(OS_MACOSX) // See previous definition of this message for explanation of why it is // defined twice. @@ -1073,4 +1066,16 @@ IPC_BEGIN_MESSAGES(Automation) IPC_MESSAGE_ROUTED1(AutomationMsg_RecordHistograms, std::vector<std::string> /* histogram_list */) + IPC_MESSAGE_ROUTED3(AutomationMsg_AttachExternalTab, + int /* tab_handle */, + intptr_t /* cookie */, + int /* disposition */) + + // Sent when the automation client connects to an existing tab. + IPC_SYNC_MESSAGE_ROUTED1_3(AutomationMsg_ConnectExternalTab, + intptr_t /* cookie */, + gfx::NativeWindow /* Tab container window */, + gfx::NativeWindow /* Tab window */, + int /* Handle to the new tab */) + IPC_END_MESSAGES(Automation) |