| Index: chrome/browser/sync/glue/data_type_manager_impl.h
|
| diff --git a/chrome/browser/sync/glue/data_type_manager_impl.h b/chrome/browser/sync/glue/data_type_manager_impl.h
|
| index c6ca4194826e122cddcfea510bcaeb4717b3bd67..a41b72e0debb5c0e7b72882263dc13988614b4a5 100644
|
| --- a/chrome/browser/sync/glue/data_type_manager_impl.h
|
| +++ b/chrome/browser/sync/glue/data_type_manager_impl.h
|
| @@ -62,8 +62,7 @@ class DataTypeManagerImpl : public DataTypeManager,
|
| // Otherwise, returns false.
|
| bool ProcessReconfigure();
|
|
|
| - void Restart(syncer::ConfigureReason reason,
|
| - BackendDataTypeConfigurer::NigoriState nigori_state);
|
| + void Restart(syncer::ConfigureReason reason);
|
| void DownloadReady(syncer::ModelTypeSet failed_configuration_types);
|
|
|
| // Notification from the SBH that download failed due to a transient
|
| @@ -79,8 +78,7 @@ class DataTypeManagerImpl : public DataTypeManager,
|
|
|
| void ConfigureImpl(
|
| TypeSet desired_types,
|
| - syncer::ConfigureReason reason,
|
| - BackendDataTypeConfigurer::NigoriState nigori_state);
|
| + syncer::ConfigureReason reason);
|
|
|
| BackendDataTypeConfigurer* configurer_;
|
| // Map of all data type controllers that are available for sync.
|
| @@ -97,10 +95,6 @@ class DataTypeManagerImpl : public DataTypeManager,
|
| // The reason for the last reconfigure attempt. Not this will be set to a
|
| // valid value only when |needs_reconfigure_| is set.
|
| syncer::ConfigureReason last_configure_reason_;
|
| - // The value of |nigori_state| on the last reconfigure attempt.
|
| - // Like |last_configure_reason_|, set to a valid value only when
|
| - // |needs_reconfigure_| is set.
|
| - BackendDataTypeConfigurer::NigoriState last_nigori_state_;
|
|
|
| base::WeakPtrFactory<DataTypeManagerImpl> weak_ptr_factory_;
|
|
|
|
|