From 587f9e80845ad7be21cc7ae2b30ff842e07301fc Mon Sep 17 00:00:00 2001 From: "stoyan@chromium.org" Date: Mon, 6 Jul 2009 15:57:24 +0000 Subject: Make two IPC messages async. Review URL: http://codereview.chromium.org/155009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19946 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/automation/automation_messages_internal.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chrome/test/automation/automation_messages_internal.h b/chrome/test/automation/automation_messages_internal.h index 4367a46..4060b16 100644 --- a/chrome/test/automation/automation_messages_internal.h +++ b/chrome/test/automation/automation_messages_internal.h @@ -895,14 +895,14 @@ IPC_BEGIN_MESSAGES(Automation) // Used to put the browser into "extension automation mode" for the // current profile, or turn off the mode. - IPC_SYNC_MESSAGE_ROUTED1_0(AutomationMsg_SetEnableExtensionAutomation, - bool /* true to enable extension automation */) + IPC_MESSAGE_ROUTED1(AutomationMsg_SetEnableExtensionAutomation, + bool /* true to enable extension automation */) // This message tells the browser to start using the new proxy configuration // represented by the given JSON string. The parameters used in the JSON // string are defined in automation_constants.h. - IPC_SYNC_MESSAGE_ROUTED1_0(AutomationMsg_SetProxyConfig, - std::string /* proxy_config_json_string */) + IPC_MESSAGE_ROUTED1(AutomationMsg_SetProxyConfig, + std::string /* proxy_config_json_string */) // Sets Download Shelf visibility for the specified browser. IPC_SYNC_MESSAGE_ROUTED2_0(AutomationMsg_SetShelfVisibility, -- cgit v1.1