Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: components/autofill/core/browser/address.h

Issue 2110563002: Use AutofillProfileComparator in place of ad-hoc merge logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@merge
Patch Set: Rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/autofill/core/browser/address.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/address.h
diff --git a/components/autofill/core/browser/address.h b/components/autofill/core/browser/address.h
index 4f07f0576802fff1648a05ddf548940dea6737bd..a37d485f3441734d1fc0ac3058aba984b118739a 100644
--- a/components/autofill/core/browser/address.h
+++ b/components/autofill/core/browser/address.h
@@ -22,6 +22,8 @@ class Address : public FormGroup {
~Address() override;
Address& operator=(const Address& address);
+ bool operator==(const Address& other) const;
+ bool operator!=(const Address& other) const { return !operator==(other); }
// FormGroup:
base::string16 GetRawInfo(ServerFieldType type) const override;
« no previous file with comments | « no previous file | components/autofill/core/browser/address.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698