summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-24 07:44:22 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-24 07:44:22 +0000
commitb951f328ab188e704d635444c914a037adbaa75d (patch)
tree8e505b9797da88d8bb66f213f30b7c9332561c69 /chrome/test/automation
parentabac987398cdef01786a9acdc07c7aca5a6e8a58 (diff)
downloadchromium_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.h4
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: