Index: chrome/browser/prefs/active_profile_pref_service.cc |
diff --git a/chrome/browser/prefs/active_profile_pref_service.cc b/chrome/browser/prefs/active_profile_pref_service.cc |
index 9168ebf231e66c3dc88b46c8de8ba0340453c09c..bafda8eec02a600352f9a6c2aeb2cab083366c2d 100644 |
--- a/chrome/browser/prefs/active_profile_pref_service.cc |
+++ b/chrome/browser/prefs/active_profile_pref_service.cc |
@@ -16,13 +16,15 @@ ActiveProfilePrefService::~ActiveProfilePrefService() = default; |
void ActiveProfilePrefService::Connect( |
prefs::mojom::PrefRegistryPtr pref_registry, |
+ const std::vector<PrefValueStore::PrefStoreType>& already_connected_types, |
const ConnectCallback& callback) { |
auto* connector = content::BrowserContext::GetConnectorFor( |
ProfileManager::GetActiveUserProfile()); |
connector->BindInterface(prefs::mojom::kServiceName, &connector_ptr_); |
connector_ptr_.set_connection_error_handler(base::Bind( |
&ActiveProfilePrefService::OnConnectError, base::Unretained(this))); |
- connector_ptr_->Connect(std::move(pref_registry), callback); |
+ connector_ptr_->Connect(std::move(pref_registry), already_connected_types, |
+ callback); |
} |
void ActiveProfilePrefService::Create( |