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..2598092d12bfc2405b0930e2099f5ae464f5033f 100644 |
| --- a/components/autofill/core/browser/contact_info.h |
| +++ b/components/autofill/core/browser/contact_info.h |
| @@ -41,17 +41,13 @@ class NameInfo : public FormGroup { |
| // string otherwise. |
| base::string16 MiddleInitial() const; |
| - const base::string16& first() const { return first_; } |
| - const base::string16& middle() const { return middle_; } |
| - const base::string16& last() const { return last_; } |
| - |
| // Sets |first_|, |middle_|, and |last_| to the tokenized |full|. |
| - // It is tokenized on a space only. |
| void SetFullName(const base::string16& full); |
| base::string16 first_; |
| base::string16 middle_; |
| base::string16 last_; |
| + base::string16 full_name_; |
|
Ilya Sherman
2014/06/03 22:53:35
Are you planning to persist this to the database a
Evan Stade
2014/06/03 23:55:35
hrkk.. that would be ideal, yes. I gather that wil
Ilya Sherman
2014/06/04 00:13:45
Rouslan was actually the last one to make such a c
|
| }; |
| class EmailInfo : public FormGroup { |