Index: chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl_unittest.cc |
diff --git a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl_unittest.cc b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl_unittest.cc |
index f2d338c2d3dabaf0e6b99e9f2f680b3f5e1853f4..da95cdd51e60f2e2e946bf7875175450f0b10c5f 100644 |
--- a/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl_unittest.cc |
+++ b/chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl_unittest.cc |
@@ -5,6 +5,7 @@ |
#include "chrome/browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h" |
#include <string> |
+#include <utility> |
#include "base/test/test_simple_task_runner.h" |
#include "chrome/common/safe_browsing/csd.pb.h" |
@@ -22,7 +23,7 @@ class IncidentReportUploaderImplTest : public testing::Test { |
safe_browsing::IncidentReportUploader::Result result, |
scoped_ptr<safe_browsing::ClientIncidentResponse> response) { |
result_ = result; |
- response_ = response.Pass(); |
+ response_ = std::move(response); |
} |
protected: |