| 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 ed483a9cabc9e286e6280a2014b63c714788b9f6..1880125446e66533bed1f1620a9935901ffe750a 100644
|
| --- a/chrome/browser/sync/profile_sync_service.h
|
| +++ b/chrome/browser/sync/profile_sync_service.h
|
| @@ -37,7 +37,7 @@
|
| #include "components/sync_driver/data_type_encryption_handler.h"
|
| #include "components/sync_driver/data_type_manager.h"
|
| #include "components/sync_driver/data_type_manager_observer.h"
|
| -#include "components/sync_driver/failed_data_types_handler.h"
|
| +#include "components/sync_driver/data_type_status_table.h"
|
| #include "components/sync_driver/non_blocking_data_type_manager.h"
|
| #include "components/sync_driver/sync_frontend.h"
|
| #include "components/sync_driver/sync_prefs.h"
|
| @@ -720,7 +720,7 @@ class ProfileSyncService : public ProfileSyncServiceBase,
|
| }
|
|
|
| // TODO(sync): This is only used in tests. Can we remove it?
|
| - const sync_driver::FailedDataTypesHandler& failed_data_types_handler() const;
|
| + const sync_driver::DataTypeStatusTable& data_type_status_table() const;
|
|
|
| sync_driver::DataTypeManager::ConfigureStatus configure_status() {
|
| return configure_status_;
|
| @@ -1080,7 +1080,7 @@ class ProfileSyncService : public ProfileSyncServiceBase,
|
|
|
| // Tracks the set of failed data types (those that encounter an error
|
| // or must delay loading for some reason).
|
| - sync_driver::FailedDataTypesHandler failed_data_types_handler_;
|
| + sync_driver::DataTypeStatusTable data_type_status_table_;
|
|
|
| sync_driver::DataTypeManager::ConfigureStatus configure_status_;
|
|
|
|
|