diff options
Diffstat (limited to 'sync/internal_api/public/test/test_entry_factory.h')
-rw-r--r-- | sync/internal_api/public/test/test_entry_factory.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sync/internal_api/public/test/test_entry_factory.h b/sync/internal_api/public/test/test_entry_factory.h index 931b8e7..83efe26 100644 --- a/sync/internal_api/public/test/test_entry_factory.h +++ b/sync/internal_api/public/test/test_entry_factory.h @@ -42,19 +42,19 @@ class TestEntryFactory { const syncable::Id& parent_id, const std::string& name, bool is_folder, - syncer::ModelType model_type, + ModelType model_type, int64* metahandle_out); // Creates an item that is both unsynced an an unapplied update. Returns the // metahandle of the created item. int64 CreateUnappliedAndUnsyncedItem(const std::string& name, - syncer::ModelType model_type); + ModelType model_type); // Creates an item that has neither IS_UNSYNED or IS_UNAPPLIED_UPDATE. The // item is known to both the server and client. Returns the metahandle of // the created item. - int64 CreateSyncedItem(const std::string& name, syncer::ModelType - model_type, bool is_folder); + int64 CreateSyncedItem(const std::string& name, + ModelType model_type, bool is_folder); int64 GetNextRevision(); |