Chromium Code Reviews| Index: components/autofill/core/browser/contact_info.h |
| diff --git a/components/autofill/core/browser/contact_info.h b/components/autofill/core/browser/contact_info.h |
| index 007be1be81f5ebb2e5fecb3c8d23aa9f583f962e..cbaeeb6eb4cfeab219a755b719575f1a01c67daf 100644 |
| --- a/components/autofill/core/browser/contact_info.h |
| +++ b/components/autofill/core/browser/contact_info.h |
| @@ -22,6 +22,9 @@ class NameInfo : public FormGroup { |
| virtual ~NameInfo(); |
| NameInfo& operator=(const NameInfo& info); |
| + bool operator==(const NameInfo& info); |
| + bool operator!=(const NameInfo& info); |
|
Ilya Sherman
2014/06/13 21:13:49
Are these operators still needed, now that you've
Pritam Nikam
2014/06/14 10:27:03
Done.
Removed both operators == & !=, as these are
|
| + bool EqualsIgnoreCase(const NameInfo& info); |
|
Ilya Sherman
2014/06/13 21:13:49
nit: Please leave a blank line before this method
Pritam Nikam
2014/06/14 10:27:03
Done.
|
| // FormGroup: |
| virtual base::string16 GetRawInfo(ServerFieldType type) const OVERRIDE; |