Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(798)

Unified Diff: content/browser/renderer_host/render_widget_host_view_win.cc

Issue 9111032: Change over IgnoreReturn to IgnoreResult. remove IgnoreReturn. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix it for realz Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/browser/utility_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_widget_host_view_win.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_win.cc b/content/browser/renderer_host/render_widget_host_view_win.cc
index 8b364ab17c71919cd7a981a191e696440ce9f11c..14ee246bde9f3046d6a4bbb017ed994075af638f 100644
--- a/content/browser/renderer_host/render_widget_host_view_win.cc
+++ b/content/browser/renderer_host/render_widget_host_view_win.cc
@@ -577,8 +577,8 @@ void RenderWidgetHostViewWin::CleanupCompositorWindow() {
BrowserThread::PostDelayedTask(
BrowserThread::UI,
FROM_HERE,
- base::IgnoreReturn<BOOL>(
- base::Bind(&::DestroyWindow, compositor_host_window_)),
+ base::Bind(base::IgnoreResult(&::DestroyWindow),
+ compositor_host_window_),
kDestroyCompositorHostWindowDelay);
compositor_host_window_ = NULL;
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/browser/utility_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698