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

Unified Diff: chrome/browser/extensions/test_extension_service.cc

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments 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
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | chrome/browser/prefs/pref_model_associator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/test_extension_service.cc
diff --git a/chrome/browser/extensions/test_extension_service.cc b/chrome/browser/extensions/test_extension_service.cc
index 3846b2fbeb9b3ece2c3a9e2863331fde747f6df1..47f03c75262636c7688be239a938c4b5ea8bbee0 100644
--- a/chrome/browser/extensions/test_extension_service.cc
+++ b/chrome/browser/extensions/test_extension_service.cc
@@ -73,30 +73,30 @@ void TestExtensionService::CheckForUpdatesSoon() {
ADD_FAILURE();
}
-csync::SyncError TestExtensionService::MergeDataAndStartSyncing(
+syncer::SyncError TestExtensionService::MergeDataAndStartSyncing(
syncable::ModelType type,
- const csync::SyncDataList& initial_sync_data,
- scoped_ptr<csync::SyncChangeProcessor> sync_processor,
- scoped_ptr<csync::SyncErrorFactory> sync_error_factory) {
+ const syncer::SyncDataList& initial_sync_data,
+ scoped_ptr<syncer::SyncChangeProcessor> sync_processor,
+ scoped_ptr<syncer::SyncErrorFactory> sync_error_factory) {
ADD_FAILURE();
- return csync::SyncError();
+ return syncer::SyncError();
}
void TestExtensionService::StopSyncing(syncable::ModelType type) {
ADD_FAILURE();
}
-csync::SyncDataList TestExtensionService::GetAllSyncData(
+syncer::SyncDataList TestExtensionService::GetAllSyncData(
syncable::ModelType type) const {
ADD_FAILURE();
- return csync::SyncDataList();
+ return syncer::SyncDataList();
}
-csync::SyncError TestExtensionService::ProcessSyncChanges(
+syncer::SyncError TestExtensionService::ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const csync::SyncChangeList& change_list) {
+ const syncer::SyncChangeList& change_list) {
ADD_FAILURE();
- return csync::SyncError();
+ return syncer::SyncError();
}
bool TestExtensionService::is_ready() {
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | chrome/browser/prefs/pref_model_associator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698