| Index: chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| index 3e73988e81430b7a247b3856e85013fdb5c68118..aa6fcc15e78c9b6a8c9ec352a7e5cd335b8b647a 100644
|
| --- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| @@ -69,6 +69,7 @@ using autofill::ServerFieldType;
|
| using autofill::AutofillKey;
|
| using autofill::AutofillProfile;
|
| using autofill::AutofillProfileChange;
|
| +using autofill::AutofillProfileSyncableService;
|
| using autofill::AutofillTable;
|
| using autofill::AutofillWebDataService;
|
| using autofill::PersonalDataManager;
|
| @@ -642,7 +643,7 @@ class ProfileSyncServiceAutofillTest
|
| bool AddAutofillSyncNode(const AutofillProfile& profile) {
|
| syncer::WriteTransaction trans(FROM_HERE, sync_service_->GetUserShare());
|
| syncer::ReadNode autofill_root(&trans);
|
| - if (autofill_root.InitByTagLookup(kAutofillProfileTag) !=
|
| + if (autofill_root.InitByTagLookup(autofill::kAutofillProfileTag) !=
|
| BaseNode::INIT_OK) {
|
| return false;
|
| }
|
| @@ -706,7 +707,7 @@ class ProfileSyncServiceAutofillTest
|
| std::vector<AutofillProfile>* profiles) {
|
| syncer::ReadTransaction trans(FROM_HERE, sync_service_->GetUserShare());
|
| syncer::ReadNode autofill_root(&trans);
|
| - if (autofill_root.InitByTagLookup(kAutofillProfileTag) !=
|
| + if (autofill_root.InitByTagLookup(autofill::kAutofillProfileTag) !=
|
| BaseNode::INIT_OK) {
|
| return false;
|
| }
|
|
|