blob: 05bbe95ad41d98b32059e0116dd58a552c8fe7c8 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#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/browser_context_keyed_service/browser_context_dependency_manager.h"
#include "components/user_prefs/pref_registry_syncable.h"
// static
MediaGalleriesPreferences*
MediaGalleriesPreferencesFactory::GetForProfile(Profile* profile) {
return static_cast<MediaGalleriesPreferences*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
// static
MediaGalleriesPreferencesFactory*
MediaGalleriesPreferencesFactory::GetInstance() {
return Singleton<MediaGalleriesPreferencesFactory>::get();
}
MediaGalleriesPreferencesFactory::MediaGalleriesPreferencesFactory()
: BrowserContextKeyedServiceFactory(
"MediaGalleriesPreferences",
BrowserContextDependencyManager::GetInstance()) {}
MediaGalleriesPreferencesFactory::~MediaGalleriesPreferencesFactory() {}
BrowserContextKeyedService*
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);
}