| Index: chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.cc
|
| diff --git a/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.cc b/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.cc
|
| index 81da207c186e53eeeb260694a67f5306fe2cec83..8b1f9bbd4f2d36a79d3fac2d977527c16ed56135 100644
|
| --- a/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.cc
|
| +++ b/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "chrome/common/chrome_utility_messages.h"
|
| #include "chrome/common/safe_browsing/zip_analyzer_results.h"
|
| @@ -92,7 +94,7 @@ void SandboxedDMGAnalyzer::OnUtilityProcessStarted() {
|
|
|
| utility_process_host_->Send(
|
| new ChromeUtilityMsg_AnalyzeDmgFileForDownloadProtection(
|
| - IPC::TakeFileHandleForProcess(file_.Pass(), utility_process)));
|
| + IPC::TakeFileHandleForProcess(std::move(file_), utility_process)));
|
| }
|
|
|
| void SandboxedDMGAnalyzer::OnAnalysisFinished(
|
|
|