| Index: components/autofill/core/browser/address.h
|
| diff --git a/components/autofill/core/browser/address.h b/components/autofill/core/browser/address.h
|
| index f1d726c345072390c7e9a6c06c2dcb1dd5fa3284..4f07f0576802fff1648a05ddf548940dea6737bd 100644
|
| --- a/components/autofill/core/browser/address.h
|
| +++ b/components/autofill/core/browser/address.h
|
| @@ -19,28 +19,25 @@ class Address : public FormGroup {
|
| public:
|
| Address();
|
| Address(const Address& address);
|
| - virtual ~Address();
|
| + ~Address() override;
|
|
|
| Address& operator=(const Address& address);
|
|
|
| // FormGroup:
|
| - virtual base::string16 GetRawInfo(ServerFieldType type) const override;
|
| - virtual void SetRawInfo(ServerFieldType type,
|
| - const base::string16& value) override;
|
| - virtual base::string16 GetInfo(const AutofillType& type,
|
| - const std::string& app_locale) const override;
|
| - virtual bool SetInfo(const AutofillType& type,
|
| - const base::string16& value,
|
| - const std::string& app_locale) override;
|
| - virtual void GetMatchingTypes(
|
| - const base::string16& text,
|
| - const std::string& app_locale,
|
| - ServerFieldTypeSet* matching_types) const override;
|
| + base::string16 GetRawInfo(ServerFieldType type) const override;
|
| + void SetRawInfo(ServerFieldType type, const base::string16& value) override;
|
| + base::string16 GetInfo(const AutofillType& type,
|
| + const std::string& app_locale) const override;
|
| + bool SetInfo(const AutofillType& type,
|
| + const base::string16& value,
|
| + const std::string& app_locale) override;
|
| + void GetMatchingTypes(const base::string16& text,
|
| + const std::string& app_locale,
|
| + ServerFieldTypeSet* matching_types) const override;
|
|
|
| private:
|
| // FormGroup:
|
| - virtual void GetSupportedTypes(
|
| - ServerFieldTypeSet* supported_types) const override;
|
| + void GetSupportedTypes(ServerFieldTypeSet* supported_types) const override;
|
|
|
| // Trims any trailing newlines from |street_address_|.
|
| void TrimStreetAddress();
|
|
|