| Index: components/autofill/core/browser/autofill_profile.cc
|
| diff --git a/components/autofill/core/browser/autofill_profile.cc b/components/autofill/core/browser/autofill_profile.cc
|
| index 469111e4ce6e0a8a6d44aaed45dbd16c956e257f..9630d5b188b98665eb1c1f1b4dc6ed8f0e22db38 100644
|
| --- a/components/autofill/core/browser/autofill_profile.cc
|
| +++ b/components/autofill/core/browser/autofill_profile.cc
|
| @@ -195,22 +195,23 @@ AutofillProfile::AutofillProfile(const std::string& guid,
|
| const std::string& origin)
|
| : AutofillDataModel(guid, origin),
|
| record_type_(LOCAL_PROFILE),
|
| - phone_number_(this) {
|
| -}
|
| + phone_number_(this),
|
| + has_converted_(false) {}
|
|
|
| AutofillProfile::AutofillProfile(RecordType type, const std::string& server_id)
|
| : AutofillDataModel(base::GenerateGUID(), std::string()),
|
| record_type_(type),
|
| phone_number_(this),
|
| - server_id_(server_id) {
|
| + server_id_(server_id),
|
| + has_converted_(false) {
|
| DCHECK(type == SERVER_PROFILE);
|
| }
|
|
|
| AutofillProfile::AutofillProfile()
|
| : AutofillDataModel(base::GenerateGUID(), std::string()),
|
| record_type_(LOCAL_PROFILE),
|
| - phone_number_(this) {
|
| -}
|
| + phone_number_(this),
|
| + has_converted_(false) {}
|
|
|
| AutofillProfile::AutofillProfile(const AutofillProfile& profile)
|
| : AutofillDataModel(std::string(), std::string()), phone_number_(this) {
|
| @@ -243,6 +244,7 @@ AutofillProfile& AutofillProfile::operator=(const AutofillProfile& profile) {
|
| set_language_code(profile.language_code());
|
|
|
| server_id_ = profile.server_id();
|
| + has_converted_ = profile.has_converted();
|
|
|
| return *this;
|
| }
|
|
|