| Index: components/autofill/content/browser/risk/fingerprint.h
|
| diff --git a/components/autofill/content/browser/risk/fingerprint.h b/components/autofill/content/browser/risk/fingerprint.h
|
| index 4b38182c147907f06dd506e00a0d5388c2a57eff..ae1b7857a7a39c9ce501ae996eb33b1a4805cc85 100644
|
| --- a/components/autofill/content/browser/risk/fingerprint.h
|
| +++ b/components/autofill/content/browser/risk/fingerprint.h
|
| @@ -14,10 +14,10 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback_forward.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/autofill/core/browser/autofill_client.h"
|
|
|
| class PrefService;
|
| @@ -57,7 +57,7 @@ void GetFingerprint(
|
| const base::Time& install_time,
|
| const std::string& app_locale,
|
| const std::string& user_agent,
|
| - const base::Callback<void(scoped_ptr<Fingerprint>)>& callback);
|
| + const base::Callback<void(std::unique_ptr<Fingerprint>)>& callback);
|
|
|
| } // namespace risk
|
| } // namespace autofill
|
|
|