| Index: chrome/browser/sync/profile_sync_service_preference_unittest.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_preference_unittest.cc b/chrome/browser/sync/profile_sync_service_preference_unittest.cc
|
| index 03b3e5d52a9256837ad2815791e35596bce4b871..42e165cab7ae32c6bc43084b8661c3108e8d2748 100644
|
| --- a/chrome/browser/sync/profile_sync_service_preference_unittest.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_preference_unittest.cc
|
| @@ -103,12 +103,11 @@ class ProfileSyncServicePreferenceTest
|
| }
|
|
|
| // DataTypeDebugInfoListener implementation.
|
| - virtual void OnSingleDataTypeConfigureComplete(
|
| - const syncer::DataTypeConfigurationStats& configuration_stats) OVERRIDE {
|
| - association_stats_ = configuration_stats.association_stats;
|
| - }
|
| - virtual void OnConfigureComplete() OVERRIDE {
|
| - // Do nothing.
|
| + virtual void OnDataTypeConfigureComplete(
|
| + const std::vector<syncer::DataTypeConfigurationStats>&
|
| + configuration_stats) OVERRIDE {
|
| + ASSERT_EQ(1u, configuration_stats.size());
|
| + association_stats_ = configuration_stats[0].association_stats;
|
| }
|
|
|
| protected:
|
|
|