| 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 8ef677ac5ec27ae2099d2a7dddcea67b13facf59..0f1ae12c0f18ea96586e845a6a2e97df1b6ab2c1 100644
|
| --- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
|
| @@ -72,7 +72,7 @@ using content::BrowserThread;
|
| using syncer::AUTOFILL;
|
| using syncer::BaseNode;
|
| using syncer::syncable::BASE_VERSION;
|
| -using syncer::syncable::CREATE;
|
| +using syncer::syncable::CREATE_UNIQUE;
|
| using syncer::syncable::GET_BY_SERVER_TAG;
|
| using syncer::syncable::MutableEntry;
|
| using syncer::syncable::SERVER_SPECIFICS;
|
| @@ -741,7 +741,8 @@ class FakeServerUpdater : public base::RefCountedThreadSafe<FakeServerUpdater> {
|
| // Simulates effects of UpdateLocalDataFromServerData
|
| MutableEntry parent(&trans, GET_BY_SERVER_TAG,
|
| syncer::ModelTypeToRootTag(syncer::AUTOFILL));
|
| - MutableEntry item(&trans, CREATE, parent.Get(syncer::syncable::ID), tag);
|
| + MutableEntry item(&trans, CREATE_UNIQUE, syncer::AUTOFILL,
|
| + parent.Get(syncer::syncable::ID), tag);
|
| ASSERT_TRUE(item.good());
|
| item.Put(SPECIFICS, entity_specifics);
|
| item.Put(SERVER_SPECIFICS, entity_specifics);
|
|
|