summaryrefslogtreecommitdiffstats
path: root/chrome_frame
diff options
context:
space:
mode:
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();
}