| Index: chrome/browser/sync/glue/model_association_manager.h
|
| diff --git a/chrome/browser/sync/glue/model_association_manager.h b/chrome/browser/sync/glue/model_association_manager.h
|
| index bb5b841303ef02933c1b2bbe9d08a60fb43c0964..6e00068c0d8c6acab98eb076fc4752fe50f2e83c 100644
|
| --- a/chrome/browser/sync/glue/model_association_manager.h
|
| +++ b/chrome/browser/sync/glue/model_association_manager.h
|
| @@ -97,11 +97,11 @@ class ModelAssociationManager {
|
| // Callback passed to each data type controller on starting association. This
|
| // callback will be invoked when the model association is done.
|
| void TypeStartCallback(DataTypeController::StartResult result,
|
| - const csync::SyncError& error);
|
| + const syncer::SyncError& error);
|
|
|
| // Callback that will be invoked when the models finish loading. This callback
|
| // will be passed to |LoadModels| function.
|
| - void ModelLoadCallback(syncable::ModelType type, csync::SyncError error);
|
| + void ModelLoadCallback(syncable::ModelType type, syncer::SyncError error);
|
|
|
| // Calls the |LoadModels| method on the next controller waiting to start.
|
| void LoadModelForNextType();
|
| @@ -114,14 +114,14 @@ class ModelAssociationManager {
|
| // do the book keeping and do the UMA reporting.
|
| void AppendToFailedDatatypesAndLogError(
|
| DataTypeController::StartResult result,
|
| - const csync::SyncError& error);
|
| + const syncer::SyncError& error);
|
|
|
| syncable::ModelTypeSet GetTypesWaitingToLoad();
|
|
|
|
|
| State state_;
|
| syncable::ModelTypeSet desired_types_;
|
| - std::list<csync::SyncError> failed_datatypes_info_;
|
| + std::list<syncer::SyncError> failed_datatypes_info_;
|
| std::map<syncable::ModelType, int> start_order_;
|
|
|
| // This illustration explains the movement of one DTC through various lists.
|
|
|