diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-15 20:52:58 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-15 20:52:58 +0000 |
commit | b44f8adbee594abffab0246815a0614675adf07b (patch) | |
tree | 149ff8b86729ab5231de82dbed4c9bd7a486b8d8 /chrome/test/automation/automation_proxy.h | |
parent | 42c83708c84fbf7041387f7417d50536823732d4 (diff) | |
download | chromium_src-b44f8adbee594abffab0246815a0614675adf07b.zip chromium_src-b44f8adbee594abffab0246815a0614675adf07b.tar.gz chromium_src-b44f8adbee594abffab0246815a0614675adf07b.tar.bz2 |
Rename IPC::Channel and IPC::Sender in src/chrome.
Changes code in chrome to use the new names over the old
now-typedefed-for-compat ones.
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10553010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142474 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/automation_proxy.h')
-rw-r--r-- | chrome/test/automation/automation_proxy.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/test/automation/automation_proxy.h b/chrome/test/automation/automation_proxy.h index 80c34ef..b218cd9 100644 --- a/chrome/test/automation/automation_proxy.h +++ b/chrome/test/automation/automation_proxy.h @@ -23,7 +23,7 @@ #include "chrome/test/automation/browser_proxy.h" #include "googleurl/src/gurl.h" #include "ipc/ipc_channel_proxy.h" -#include "ipc/ipc_message.h" +#include "ipc/ipc_sender.h" #include "ipc/ipc_sync_channel.h" #include "ui/base/ui_base_types.h" #include "ui/gfx/native_widget_types.h" @@ -35,7 +35,7 @@ struct ExternalTabSettings; // This is an interface that AutomationProxy-related objects can use to // access the message-sending abilities of the Proxy. -class AutomationMessageSender : public IPC::Message::Sender { +class AutomationMessageSender : public IPC::Sender { public: // Sends a message synchronously; it doesn't return until a response has been // received or a timeout has expired. @@ -53,8 +53,7 @@ class AutomationMessageSender : public IPC::Message::Sender { // This is the interface that external processes can use to interact with // a running instance of the app. -class AutomationProxy : public IPC::Channel::Listener, - public AutomationMessageSender { +class AutomationProxy : public IPC::Listener, public AutomationMessageSender { public: AutomationProxy(int action_timeout_ms, bool disconnect_on_failure); virtual ~AutomationProxy(); |