| Index: chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| diff --git a/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc b/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| index fe03da2c054145eebaf020f5588b4971d2583edd..3d93e67410a2799cf5eae7d7504fc62af86db43e 100644
|
| --- a/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| +++ b/chrome/browser/safe_browsing/sandboxed_zip_analyzer.cc
|
| @@ -117,8 +117,8 @@ void SandboxedZipAnalyzer::StartProcessOnIOThread() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| utility_process_host_ = content::UtilityProcessHost::Create(
|
| this,
|
| - BrowserThread::GetMessageLoopProxyForThread(
|
| - BrowserThread::IO))->AsWeakPtr();
|
| + BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO).get())
|
| + ->AsWeakPtr();
|
| utility_process_host_->Send(new ChromeUtilityMsg_StartupPing);
|
| // Wait for the startup notification before sending the main IPC to the
|
| // utility process, so that we can dup the file handle.
|
|
|