| Index: components/autofill/core/browser/phone_number.h
|
| diff --git a/components/autofill/core/browser/phone_number.h b/components/autofill/core/browser/phone_number.h
|
| index 8d50d479a364b0fccb90e791caa0df6ab44af761..333bbae909a17f67ab63e7553d89884141e26924 100644
|
| --- a/components/autofill/core/browser/phone_number.h
|
| +++ b/components/autofill/core/browser/phone_number.h
|
| @@ -26,6 +26,8 @@ class PhoneNumber : public FormGroup {
|
| ~PhoneNumber() override;
|
|
|
| PhoneNumber& operator=(const PhoneNumber& number);
|
| + bool operator==(const PhoneNumber& other) const;
|
| + bool operator!=(const PhoneNumber& other) const { return !operator==(other); }
|
|
|
| void set_profile(AutofillProfile* profile) { profile_ = profile; }
|
|
|
|
|