| // Copyright 2019 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/sync/wifi_configuration_sync_service_factory.h" |
| |
| #include "base/no_destructor.h" |
| #include "chrome/browser/ash/profiles/profile_helper.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/sync/data_type_store_service_factory.h" |
| #include "chrome/common/channel_info.h" |
| #include "chromeos/ash/components/network/network_handler.h" |
| #include "chromeos/ash/components/sync_wifi/pending_network_configuration_tracker_impl.h" |
| #include "chromeos/ash/components/sync_wifi/wifi_configuration_bridge.h" |
| #include "chromeos/ash/components/sync_wifi/wifi_configuration_sync_service.h" |
| #include "components/pref_registry/pref_registry_syncable.h" |
| #include "components/sync/model/data_type_store_service.h" |
| |
| // static |
| ash::sync_wifi::WifiConfigurationSyncService* |
| WifiConfigurationSyncServiceFactory::GetForProfile(Profile* profile, |
| bool create) { |
| if (!ShouldRunInProfile(profile)) { |
| return nullptr; |
| } |
| |
| return static_cast<ash::sync_wifi::WifiConfigurationSyncService*>( |
| GetInstance()->GetServiceForBrowserContext(profile, create)); |
| } |
| |
| // static |
| WifiConfigurationSyncServiceFactory* |
| WifiConfigurationSyncServiceFactory::GetInstance() { |
| static base::NoDestructor<WifiConfigurationSyncServiceFactory> instance; |
| return instance.get(); |
| } |
| |
| // static |
| bool WifiConfigurationSyncServiceFactory::ShouldRunInProfile( |
| const Profile* profile) { |
| // Run when signed in to a real account. Skip during tests when network stack |
| // has not been initialized. |
| return profile && ash::ProfileHelper::IsUserProfile(profile) && |
| !profile->IsOffTheRecord() && ash::NetworkHandler::IsInitialized(); |
| } |
| |
| WifiConfigurationSyncServiceFactory::WifiConfigurationSyncServiceFactory() |
| : ProfileKeyedServiceFactory("WifiConfigurationSyncService", |
| ProfileSelections::Builder() |
| .WithGuest(ProfileSelection::kOriginalOnly) |
| .WithAshInternals(ProfileSelection::kNone) |
| .Build()) { |
| DependsOn(DataTypeStoreServiceFactory::GetInstance()); |
| } |
| |
| WifiConfigurationSyncServiceFactory::~WifiConfigurationSyncServiceFactory() = |
| default; |
| |
| std::unique_ptr<KeyedService> |
| WifiConfigurationSyncServiceFactory::BuildServiceInstanceForBrowserContext( |
| content::BrowserContext* context) const { |
| Profile* profile = Profile::FromBrowserContext(context); |
| return std::make_unique<ash::sync_wifi::WifiConfigurationSyncService>( |
| chrome::GetChannel(), profile->GetPrefs(), |
| DataTypeStoreServiceFactory::GetForProfile(profile)->GetStoreFactory()); |
| } |
| |
| void WifiConfigurationSyncServiceFactory::RegisterProfilePrefs( |
| user_prefs::PrefRegistrySyncable* registry) { |
| ash::sync_wifi::PendingNetworkConfigurationTrackerImpl::RegisterProfilePrefs( |
| registry); |
| ash::sync_wifi::WifiConfigurationBridge::RegisterPrefs(registry); |
| } |