Index: chrome/browser/platform_util_win.cc |
diff --git a/chrome/browser/platform_util_win.cc b/chrome/browser/platform_util_win.cc |
index 8f211e28fe93aaca0338a294d30d44e8b2c62f5c..256bb25ce5df3e7e22fdacdc035313c5d70b6adc 100644 |
--- a/chrome/browser/platform_util_win.cc |
+++ b/chrome/browser/platform_util_win.cc |
@@ -125,9 +125,9 @@ void ShowItemInFolder(const FilePath& full_path) { |
void OpenItem(const FilePath& full_path) { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, |
- base::IgnoreReturn<bool>(base::Bind(&ui::win::OpenItemViaShell, |
- full_path))); |
+ BrowserThread::PostTask( |
+ BrowserThread::FILE, FROM_HERE, |
+ base::Bind(base::IgnoreResult(&ui::win::OpenItemViaShell), full_path)); |
} |
void OpenExternal(const GURL& url) { |