diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-19 19:16:32 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-19 19:16:32 +0000 |
commit | 298bf21d7571ee1a4c337bd2f207e9a6808649b9 (patch) | |
tree | a08ef0371cf77336fcc511ae42a466d037add0af /chrome/test | |
parent | 3c00e1ceb69aa2e13976168563d5cc47c21409a2 (diff) | |
download | chromium_src-298bf21d7571ee1a4c337bd2f207e9a6808649b9.zip chromium_src-298bf21d7571ee1a4c337bd2f207e9a6808649b9.tar.gz chromium_src-298bf21d7571ee1a4c337bd2f207e9a6808649b9.tar.bz2 |
Moving AutomationMsg_NavigationFailed to the end as required by the automation code.
TBR=nsylvain
Review URL: http://codereview.chromium.org/20501
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10027 0039d316-1c4b-4281-b951-d872f2087c98
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) |