Chromium Code Reviews| Index: chrome/browser/autofill/autofill_profile.cc |
| =================================================================== |
| --- chrome/browser/autofill/autofill_profile.cc (revision 38653) |
| +++ chrome/browser/autofill/autofill_profile.cc (working copy) |
| @@ -158,6 +158,10 @@ |
| return true; |
| } |
| +bool AutoFillProfile::operator!=(const AutoFillProfile& profile) const { |
| + return !operator==(profile); |
| +} |
| + |
| void AutoFillProfile::set_use_billing_address(bool use) { |
| if (use_billing_address_ == use) |
| return; |