This source file includes following definitions.
- GetForProfile
- GetInstance
- BuildServiceInstanceFor
- RegisterProfilePrefs
- GetBrowserContextToUse
#include "chrome/browser/media_galleries/media_galleries_preferences_factory.h"
#include "chrome/browser/media_galleries/media_galleries_preferences.h"
#include "chrome/browser/profiles/incognito_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
#include "components/user_prefs/pref_registry_syncable.h"
MediaGalleriesPreferences*
MediaGalleriesPreferencesFactory::GetForProfile(Profile* profile) {
return static_cast<MediaGalleriesPreferences*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
MediaGalleriesPreferencesFactory*
MediaGalleriesPreferencesFactory::GetInstance() {
return Singleton<MediaGalleriesPreferencesFactory>::get();
}
MediaGalleriesPreferencesFactory::MediaGalleriesPreferencesFactory()
: BrowserContextKeyedServiceFactory(
"MediaGalleriesPreferences",
BrowserContextDependencyManager::GetInstance()) {}
MediaGalleriesPreferencesFactory::~MediaGalleriesPreferencesFactory() {}
KeyedService* MediaGalleriesPreferencesFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new MediaGalleriesPreferences(static_cast<Profile*>(profile));
}
void MediaGalleriesPreferencesFactory::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* prefs) {
MediaGalleriesPreferences::RegisterProfilePrefs(prefs);
}
content::BrowserContext*
MediaGalleriesPreferencesFactory::GetBrowserContextToUse(
content::BrowserContext* context) const {
return chrome::GetBrowserContextRedirectedInIncognito(context);
}