| Index: components/autofill/core/browser/credit_card_field.h
|
| diff --git a/components/autofill/core/browser/credit_card_field.h b/components/autofill/core/browser/credit_card_field.h
|
| index 344fac82674378c7b17109b4a47e63c61cfcd4bd..a737add04406599eb030bd7a4c4efb8d86b070a0 100644
|
| --- a/components/autofill/core/browser/credit_card_field.h
|
| +++ b/components/autofill/core/browser/credit_card_field.h
|
| @@ -5,11 +5,11 @@
|
| #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_FIELD_H_
|
| #define COMPONENTS_AUTOFILL_CORE_BROWSER_CREDIT_CARD_FIELD_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/autofill/core/browser/autofill_type.h"
|
| #include "components/autofill/core/browser/form_field.h"
|
|
|
| @@ -21,7 +21,7 @@ class AutofillScanner;
|
| class CreditCardField : public FormField {
|
| public:
|
| ~CreditCardField() override;
|
| - static scoped_ptr<FormField> Parse(AutofillScanner* scanner);
|
| + static std::unique_ptr<FormField> Parse(AutofillScanner* scanner);
|
|
|
| protected:
|
| void AddClassifications(FieldCandidatesMap* field_candidates) const override;
|
|
|