Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

Unified Diff: chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
diff --git a/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc b/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
index e6652e8fb2ecf7c623bf372e070235d69d99ea36..09088e773070725953744f7db6b6b1ef6a814c70 100644
--- a/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
+++ b/chrome/browser/webdata/autofill_profile_syncable_service_unittest.cc
@@ -170,10 +170,10 @@ TEST_F(AutofillProfileSyncableServiceTest, MergeDataAndStartSyncing) {
// Takes ownership of sync_processor_.
autofill_syncable_service_.MergeDataAndStartSyncing(
- syncable::AUTOFILL_PROFILE, data_list,
+ syncer::AUTOFILL_PROFILE, data_list,
sync_processor_.PassAs<syncer::SyncChangeProcessor>(),
scoped_ptr<syncer::SyncErrorFactory>(new syncer::SyncErrorFactoryMock()));
- autofill_syncable_service_.StopSyncing(syncable::AUTOFILL_PROFILE);
+ autofill_syncable_service_.StopSyncing(syncer::AUTOFILL_PROFILE);
}
TEST_F(AutofillProfileSyncableServiceTest, GetAllSyncData) {
@@ -204,12 +204,12 @@ TEST_F(AutofillProfileSyncableServiceTest, GetAllSyncData) {
syncer::SyncDataList data_list;
// Takes ownership of sync_processor_.
autofill_syncable_service_.MergeDataAndStartSyncing(
- syncable::AUTOFILL_PROFILE, data_list,
+ syncer::AUTOFILL_PROFILE, data_list,
sync_processor_.PassAs<syncer::SyncChangeProcessor>(),
scoped_ptr<syncer::SyncErrorFactory>(new syncer::SyncErrorFactoryMock()));
syncer::SyncDataList data =
- autofill_syncable_service_.GetAllSyncData(syncable::AUTOFILL_PROFILE);
+ autofill_syncable_service_.GetAllSyncData(syncer::AUTOFILL_PROFILE);
EXPECT_EQ(2U, data.size());
EXPECT_EQ(guid_present1, data.front().GetSpecifics()
@@ -258,7 +258,7 @@ TEST_F(AutofillProfileSyncableServiceTest, ActOnChange) {
ON_CALL(*sync_processor_, ProcessSyncChanges(_, _))
.WillByDefault(
Return(syncer::SyncError(FROM_HERE, std::string("an error"),
- syncable::AUTOFILL_PROFILE)));
+ syncer::AUTOFILL_PROFILE)));
EXPECT_CALL(*sync_processor_, ProcessSyncChanges(_, _)).Times(2);
autofill_syncable_service_.set_sync_processor(sync_processor_.release());
« no previous file with comments | « chrome/browser/webdata/autofill_profile_syncable_service.cc ('k') | chrome/common/chrome_notification_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698