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

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

Issue 10825137: FYI: Control Data + Per-Device Metadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add PER_USER_METADATA, refactor some encryption code Created 8 years, 4 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/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_;

Powered by Google App Engine
This is Rietveld 408576698