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

Unified Diff: chrome/browser/sync/glue/fake_generic_change_processor.h

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
Index: chrome/browser/sync/glue/fake_generic_change_processor.h
diff --git a/chrome/browser/sync/glue/fake_generic_change_processor.h b/chrome/browser/sync/glue/fake_generic_change_processor.h
index 228b7430d03d168928690deb48e37ce230e89486..13684db9990d3c003b53c817b59eede03c80b6a8 100644
--- a/chrome/browser/sync/glue/fake_generic_change_processor.h
+++ b/chrome/browser/sync/glue/fake_generic_change_processor.h
@@ -19,26 +19,26 @@ class FakeGenericChangeProcessor : public GenericChangeProcessor {
virtual ~FakeGenericChangeProcessor();
// Setters for GenericChangeProcessor implementation results.
- void set_process_sync_changes_error(const csync::SyncError& error);
- void set_get_sync_data_for_type_error(const csync::SyncError& error);
+ void set_process_sync_changes_error(const syncer::SyncError& error);
+ void set_get_sync_data_for_type_error(const syncer::SyncError& error);
void set_sync_model_has_user_created_nodes(bool has_nodes);
void set_sync_model_has_user_created_nodes_success(bool success);
void set_crypto_ready_if_necessary(bool crypto_ready);
// GenericChangeProcessor implementations.
- virtual csync::SyncError ProcessSyncChanges(
+ virtual syncer::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const csync::SyncChangeList& change_list) OVERRIDE;
- virtual csync::SyncError GetSyncDataForType(
+ const syncer::SyncChangeList& change_list) OVERRIDE;
+ virtual syncer::SyncError GetSyncDataForType(
syncable::ModelType type,
- csync::SyncDataList* current_sync_data) OVERRIDE;
+ syncer::SyncDataList* current_sync_data) OVERRIDE;
virtual bool SyncModelHasUserCreatedNodes(syncable::ModelType type,
bool* has_nodes) OVERRIDE;
virtual bool CryptoReadyIfNecessary(syncable::ModelType type) OVERRIDE;
private:
- csync::SyncError process_sync_changes_error_;
- csync::SyncError get_sync_data_for_type_error_;
+ syncer::SyncError process_sync_changes_error_;
+ syncer::SyncError get_sync_data_for_type_error_;
bool sync_model_has_user_created_nodes_;
bool sync_model_has_user_created_nodes_success_;
bool crypto_ready_if_necessary_;
« no previous file with comments | « chrome/browser/sync/glue/fake_data_type_controller.cc ('k') | chrome/browser/sync/glue/fake_generic_change_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698