summaryrefslogtreecommitdiffstats
path: root/chrome_frame/chrome_frame_automation.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/chrome_frame_automation.cc')
-rw-r--r--chrome_frame/chrome_frame_automation.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome_frame/chrome_frame_automation.cc b/chrome_frame/chrome_frame_automation.cc
index 5ca6dd2..44aac5a 100644
--- a/chrome_frame/chrome_frame_automation.cc
+++ b/chrome_frame/chrome_frame_automation.cc
@@ -989,9 +989,11 @@ bool ChromeFrameAutomationClient::ProcessUrlRequestMessage(TabProxy* tab,
}
PostTask(
- FROM_HERE, base::IgnoreReturn<bool>(base::Bind(
- &ChromeFrameAutomationClient::ProcessUrlRequestMessage,
- base::Unretained(this), tab, msg, true)));
+ FROM_HERE,
+ base::Bind(
+ base::IgnoreResult(
+ &ChromeFrameAutomationClient::ProcessUrlRequestMessage),
+ base::Unretained(this), tab, msg, true));
return true;
}