// Copyright 2020 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 "weblayer/browser/subresource_filter_profile_context_factory.h" #include "base/no_destructor.h" #include "components/keyed_service/content/browser_context_dependency_manager.h" #include "components/keyed_service/core/keyed_service.h" #include "components/subresource_filter/content/browser/subresource_filter_profile_context.h" #include "weblayer/browser/host_content_settings_map_factory.h" namespace weblayer { // static subresource_filter::SubresourceFilterProfileContext* SubresourceFilterProfileContextFactory::GetForBrowserContext( content::BrowserContext* browser_context) { return static_cast( GetInstance()->GetServiceForBrowserContext(browser_context, true /* create */)); } // static SubresourceFilterProfileContextFactory* SubresourceFilterProfileContextFactory::GetInstance() { static base::NoDestructor factory; return factory.get(); } SubresourceFilterProfileContextFactory::SubresourceFilterProfileContextFactory() : BrowserContextKeyedServiceFactory( "SubresourceFilterProfileContext", BrowserContextDependencyManager::GetInstance()) { DependsOn(HostContentSettingsMapFactory::GetInstance()); } KeyedService* SubresourceFilterProfileContextFactory::BuildServiceInstanceFor( content::BrowserContext* context) const { auto* subresource_filter_profile_context = new subresource_filter::SubresourceFilterProfileContext( HostContentSettingsMapFactory::GetForBrowserContext(context)); return subresource_filter_profile_context; } content::BrowserContext* SubresourceFilterProfileContextFactory::GetBrowserContextToUse( content::BrowserContext* context) const { return context; } } // namespace weblayer