diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-24 07:44:22 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-24 07:44:22 +0000 |
commit | b951f328ab188e704d635444c914a037adbaa75d (patch) | |
tree | 8e505b9797da88d8bb66f213f30b7c9332561c69 /chrome/test/automation | |
parent | abac987398cdef01786a9acdc07c7aca5a6e8a58 (diff) | |
download | chromium_src-b951f328ab188e704d635444c914a037adbaa75d.zip chromium_src-b951f328ab188e704d635444c914a037adbaa75d.tar.gz chromium_src-b951f328ab188e704d635444c914a037adbaa75d.tar.bz2 |
Fix build error
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation')
-rw-r--r-- | chrome/test/automation/tab_proxy.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/test/automation/tab_proxy.h b/chrome/test/automation/tab_proxy.h index 7c02805..63c7f79 100644 --- a/chrome/test/automation/tab_proxy.h +++ b/chrome/test/automation/tab_proxy.h @@ -48,7 +48,9 @@ class TabProxy : public AutomationResourceProxy, public: class TabProxyDelegate { public: - virtual bool OnMessageReceived(TabProxy* tab, const IPC::Message& msg) {} + virtual bool OnMessageReceived(TabProxy* tab, const IPC::Message& msg) { + return false; + } virtual void OnChannelError(TabProxy* tab) {} protected: |