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

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

Issue 10662035: [Sync] Put everything in sync/api into csync namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix 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 1e2cdb7098998753008861e48905d669f8ff344d..228b7430d03d168928690deb48e37ce230e89486 100644
--- a/chrome/browser/sync/glue/fake_generic_change_processor.h
+++ b/chrome/browser/sync/glue/fake_generic_change_processor.h
@@ -19,25 +19,26 @@ class FakeGenericChangeProcessor : public GenericChangeProcessor {
virtual ~FakeGenericChangeProcessor();
// Setters for GenericChangeProcessor implementation results.
- void set_process_sync_changes_error(const SyncError& error);
- void set_get_sync_data_for_type_error(const SyncError& error);
+ void set_process_sync_changes_error(const csync::SyncError& error);
+ void set_get_sync_data_for_type_error(const csync::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 SyncError ProcessSyncChanges(
+ virtual csync::SyncError ProcessSyncChanges(
const tracked_objects::Location& from_here,
- const SyncChangeList& change_list) OVERRIDE;
- virtual SyncError GetSyncDataForType(
- syncable::ModelType type, SyncDataList* current_sync_data) OVERRIDE;
+ const csync::SyncChangeList& change_list) OVERRIDE;
+ virtual csync::SyncError GetSyncDataForType(
+ syncable::ModelType type,
+ csync::SyncDataList* current_sync_data) OVERRIDE;
virtual bool SyncModelHasUserCreatedNodes(syncable::ModelType type,
bool* has_nodes) OVERRIDE;
virtual bool CryptoReadyIfNecessary(syncable::ModelType type) OVERRIDE;
private:
- SyncError process_sync_changes_error_;
- SyncError get_sync_data_for_type_error_;
+ csync::SyncError process_sync_changes_error_;
+ csync::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