| Index: components/autofill/core/browser/autofill_client.h
|
| diff --git a/components/autofill/core/browser/autofill_client.h b/components/autofill/core/browser/autofill_client.h
|
| index a0e1b10522d8258f9e432b9e9840aa93b23e2c88..4b8c8a54788af5a9b9c606b402798e22dbedbb2d 100644
|
| --- a/components/autofill/core/browser/autofill_client.h
|
| +++ b/components/autofill/core/browser/autofill_client.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_
|
| #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/callback_forward.h"
|
| @@ -135,7 +136,7 @@ class AutofillClient {
|
| // contents of |legal_message| to the user.
|
| virtual void ConfirmSaveCreditCardToCloud(
|
| const CreditCard& card,
|
| - scoped_ptr<base::DictionaryValue> legal_message,
|
| + std::unique_ptr<base::DictionaryValue> legal_message,
|
| const base::Closure& callback) = 0;
|
|
|
| // Gathers risk data and provides it to |callback|.
|
|
|