| Index: chrome/browser/sync/profile_sync_service.h
|
| diff --git a/chrome/browser/sync/profile_sync_service.h b/chrome/browser/sync/profile_sync_service.h
|
| index 98d325463976af248b61419fc75843c214d42241..a0332c96c7cba2d6926742cc2822a43b056d5e8c 100644
|
| --- a/chrome/browser/sync/profile_sync_service.h
|
| +++ b/chrome/browser/sync/profile_sync_service.h
|
| @@ -493,6 +493,14 @@ class ProfileSyncService : public ProfileSyncServiceBase,
|
| // that data download starts.
|
| virtual void SetSetupInProgress(bool setup_in_progress);
|
|
|
| + // Reconfigures the data type manager with the latest enabled types.
|
| + // Note: Does not initialize the backend if it is not already initialized.
|
| + // This function needs to be called only after sync has been initialized
|
| + // (i.e.,only for reconfigurations). The reason we don't initialize the
|
| + // backend is because if we had encountered an unrecoverable error we don't
|
| + // want to startup once more.
|
| + virtual void ReconfigureDatatypeManager();
|
| +
|
| // Returns true if the SyncBackendHost has told us it's ready to accept
|
| // changes.
|
| // [REMARK] - it is safe to call this function only from the ui thread.
|
| @@ -917,14 +925,6 @@ class ProfileSyncService : public ProfileSyncServiceBase,
|
| // Create and register a new datatype controller.
|
| void RegisterNewDataType(syncer::ModelType data_type);
|
|
|
| - // Reconfigures the data type manager with the latest enabled types.
|
| - // Note: Does not initialize the backend if it is not already initialized.
|
| - // This function needs to be called only after sync has been initialized
|
| - // (i.e.,only for reconfigurations). The reason we don't initialize the
|
| - // backend is because if we had encountered an unrecoverable error we don't
|
| - // want to startup once more.
|
| - virtual void ReconfigureDatatypeManager();
|
| -
|
| // Collects preferred sync data types from |preference_providers_|.
|
| syncer::ModelTypeSet GetDataTypesFromPreferenceProviders() const;
|
|
|
|
|