summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-24 08:54:11 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-24 08:54:11 +0000
commitc788178aae83a4e040f8dffddda0eb6c7949e839 (patch)
treeae00f10b5ed60478efb20c3b45fbc9439a0e53aa /chrome_frame
parent6db8d99051f1989b4912e4eaf4c20436a1244d41 (diff)
downloadchromium_src-c788178aae83a4e040f8dffddda0eb6c7949e839.zip
chromium_src-c788178aae83a4e040f8dffddda0eb6c7949e839.tar.gz
chromium_src-c788178aae83a4e040f8dffddda0eb6c7949e839.tar.bz2
Fix build break, again
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70147 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r--chrome_frame/chrome_frame_automation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc
index d24188a..72dae1e 100644
--- a/chrome_frame/chrome_frame_automation.cc
+++ b/chrome_frame/chrome_frame_automation.cc
@@ -75,8 +75,8 @@ class ChromeFrameAutomationProxyImpl::TabProxyNotificationMessageFilter
message.routing_id()));
bool handled = false;
if (tab) {
- tab->OnMessageReceived(message);
- handled = tab->Release();
+ handled = tab->OnMessageReceived(message);
+ tab->Release();
} else {
DLOG(ERROR) << "Failed to find TabProxy for tab:" << message.routing_id();
}