diff options
author | stoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-06 15:57:24 +0000 |
---|---|---|
committer | stoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-06 15:57:24 +0000 |
commit | 587f9e80845ad7be21cc7ae2b30ff842e07301fc (patch) | |
tree | c9480f96402481156a5b130d13dada4217d73563 | |
parent | ff73dc6192d43dbab1508a81ef914cf9578c420f (diff) | |
download | chromium_src-587f9e80845ad7be21cc7ae2b30ff842e07301fc.zip chromium_src-587f9e80845ad7be21cc7ae2b30ff842e07301fc.tar.gz chromium_src-587f9e80845ad7be21cc7ae2b30ff842e07301fc.tar.bz2 |
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
-rw-r--r-- | chrome/test/automation/automation_messages_internal.h | 8 |
1 files 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, |