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

Unified Diff: chrome/browser/sync/glue/non_frontend_data_type_controller.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/non_frontend_data_type_controller.h
diff --git a/chrome/browser/sync/glue/non_frontend_data_type_controller.h b/chrome/browser/sync/glue/non_frontend_data_type_controller.h
index 413526eaab3bea3752c4373e0998a02916e7d710..6e9173f88a7da7c8d0bee72cd17188ea365b7bc6 100644
--- a/chrome/browser/sync/glue/non_frontend_data_type_controller.h
+++ b/chrome/browser/sync/glue/non_frontend_data_type_controller.h
@@ -25,7 +25,7 @@ namespace base {
class TimeDelta;
}
-namespace csync {
+namespace syncer {
class SyncError;
}
@@ -56,7 +56,7 @@ class NonFrontendDataTypeController : public DataTypeController {
virtual void StartAssociating(const StartCallback& start_callback) OVERRIDE;
virtual void Stop() OVERRIDE;
virtual syncable::ModelType type() const = 0;
- virtual csync::ModelSafeGroup model_safe_group() const = 0;
+ virtual syncer::ModelSafeGroup model_safe_group() const = 0;
virtual std::string name() const OVERRIDE;
virtual State state() const OVERRIDE;
@@ -101,18 +101,18 @@ class NonFrontendDataTypeController : public DataTypeController {
// Start failed, make sure we record it, clean up state, and invoke the
// callback on the frontend thread.
// Note: this is performed on the datatype's thread.
- virtual void StartFailed(StartResult result, const csync::SyncError& error);
+ virtual void StartFailed(StartResult result, const syncer::SyncError& error);
// Start up complete, update the state and invoke the callback.
// Note: this is performed on the datatype's thread.
virtual void StartDone(DataTypeController::StartResult result,
DataTypeController::State new_state,
- const csync::SyncError& error);
+ const syncer::SyncError& error);
// UI thread implementation of StartDone.
virtual void StartDoneImpl(DataTypeController::StartResult result,
DataTypeController::State new_state,
- const csync::SyncError& error);
+ const syncer::SyncError& error);
// Perform any DataType controller specific state cleanup before stopping
// the datatype controller. The default implementation is a no-op.

Powered by Google App Engine
This is Rietveld 408576698