| Index: components/autofill/core/browser/webdata/autofill_change.h
|
| diff --git a/components/autofill/core/browser/webdata/autofill_change.h b/components/autofill/core/browser/webdata/autofill_change.h
|
| index fe421615e41c748bb41b429c0b37a2ea36a5bbcd..0e856570f94d66efa173cfb37dacb385df5051eb 100644
|
| --- a/components/autofill/core/browser/webdata/autofill_change.h
|
| +++ b/components/autofill/core/browser/webdata/autofill_change.h
|
| @@ -41,7 +41,7 @@ class GenericAutofillChange {
|
| class AutofillChange : public GenericAutofillChange<AutofillKey> {
|
| public:
|
| AutofillChange(Type type, const AutofillKey& key);
|
| - virtual ~AutofillChange();
|
| + ~AutofillChange() override;
|
| bool operator==(const AutofillChange& change) const {
|
| return type() == change.type() && key() == change.key();
|
| }
|
| @@ -60,7 +60,7 @@ class AutofillProfileChange : public GenericAutofillChange<std::string> {
|
| AutofillProfileChange(Type type,
|
| const std::string& key,
|
| const AutofillProfile* profile);
|
| - virtual ~AutofillProfileChange();
|
| + ~AutofillProfileChange() override;
|
|
|
| const AutofillProfile* profile() const { return profile_; }
|
| bool operator==(const AutofillProfileChange& change) const;
|
|
|