| Index: components/autofill/content/browser/risk/fingerprint_browsertest.cc
|
| diff --git a/components/autofill/content/browser/risk/fingerprint_browsertest.cc b/components/autofill/content/browser/risk/fingerprint_browsertest.cc
|
| index 25179808fa6f4933c86726122282e6a855ab20cf..a6f8888a551a1912442c687f5ae93991cf79a17c 100644
|
| --- a/components/autofill/content/browser/risk/fingerprint_browsertest.cc
|
| +++ b/components/autofill/content/browser/risk/fingerprint_browsertest.cc
|
| @@ -6,6 +6,8 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/bind.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "build/build_config.h"
|
| @@ -41,7 +43,7 @@ void GetFingerprintInternal(
|
| const std::string& app_locale,
|
| const std::string& user_agent,
|
| const base::TimeDelta& timeout,
|
| - const base::Callback<void(scoped_ptr<Fingerprint>)>& callback);
|
| + const base::Callback<void(std::unique_ptr<Fingerprint>)>& callback);
|
|
|
| } // namespace internal
|
|
|
| @@ -71,7 +73,7 @@ class AutofillRiskFingerprintTest : public content::ContentBrowserTest {
|
| available_screen_bounds_(0, 11, 101, 60),
|
| unavailable_screen_bounds_(0, 0, 101, 11) {}
|
|
|
| - void GetFingerprintTestCallback(scoped_ptr<Fingerprint> fingerprint) {
|
| + void GetFingerprintTestCallback(std::unique_ptr<Fingerprint> fingerprint) {
|
| // Verify that all fields Chrome can fill have been filled.
|
| ASSERT_TRUE(fingerprint->has_machine_characteristics());
|
| const Fingerprint::MachineCharacteristics& machine =
|
|
|