diff options
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/automation/automation_messages_internal.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/chrome/test/automation/automation_messages_internal.h b/chrome/test/automation/automation_messages_internal.h index d5a244b..48dfe3d 100644 --- a/chrome/test/automation/automation_messages_internal.h +++ b/chrome/test/automation/automation_messages_internal.h @@ -575,15 +575,6 @@ IPC_BEGIN_MESSAGES(Automation) // None expected IPC_MESSAGE_ROUTED2(AutomationMsg_DidNavigate, int, int) - // This message is an outgoing message from Chrome to an external host. - // It is a notification that a navigation failed - // Request: - // -int : The status code. - // -GURL: The URL we failed to navigate to. - // Response: - // None expected - IPC_MESSAGE_ROUTED2(AutomationMsg_NavigationFailed, int, GURL) - // This message requests the different security states of the page displayed // in the specified tab. // Request: @@ -860,4 +851,13 @@ IPC_BEGIN_MESSAGES(Automation) IPC_SYNC_MESSAGE_ROUTED1_0(AutomationMsg_SavePackageShouldPromptUser, bool /* false if we want to not show the dialog */) + // This message is an outgoing message from Chrome to an external host. + // It is a notification that a navigation failed + // Request: + // -int : The status code. + // -GURL: The URL we failed to navigate to. + // Response: + // None expected + IPC_MESSAGE_ROUTED2(AutomationMsg_NavigationFailed, int, GURL) + IPC_END_MESSAGES(Automation) |