| Index: chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.cc
|
| diff --git a/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.cc b/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.cc
|
| index 76ee0dea6eb81d3e3f177fd659bf5e8c1f49710a..512e894c7722e6baacccacdedfae54b519b9b11d 100644
|
| --- a/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.cc
|
| +++ b/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate.cc
|
| @@ -67,8 +67,8 @@ void PreferenceValidationDelegate::OnAtomicPreferenceValidation(
|
| }
|
| incident->set_value_state(proto_value_state);
|
| incident_receiver_->AddIncidentForProfile(
|
| - profile_, base::WrapUnique(new TrackedPreferenceIncident(
|
| - std::move(incident), is_personal)));
|
| + profile_, base::MakeUnique<TrackedPreferenceIncident>(
|
| + std::move(incident), is_personal));
|
| }
|
| }
|
|
|
| @@ -91,8 +91,8 @@ void PreferenceValidationDelegate::OnSplitPreferenceValidation(
|
| }
|
| incident->set_value_state(proto_value_state);
|
| incident_receiver_->AddIncidentForProfile(
|
| - profile_, base::WrapUnique(new TrackedPreferenceIncident(
|
| - std::move(incident), is_personal)));
|
| + profile_, base::MakeUnique<TrackedPreferenceIncident>(
|
| + std::move(incident), is_personal));
|
| }
|
| }
|
|
|
|
|