1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_FACTORY_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_FACTORY_H_
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/refcounted_browser_context_keyed_service_factory.h"
12 class HostContentSettingsMap
;
15 class HostContentSettingsMapFactory
16 : public RefcountedBrowserContextKeyedServiceFactory
{
18 static HostContentSettingsMap
* GetForProfile(Profile
* profile
);
19 static HostContentSettingsMapFactory
* GetInstance();
22 friend struct base::DefaultSingletonTraits
<HostContentSettingsMapFactory
>;
24 HostContentSettingsMapFactory();
25 ~HostContentSettingsMapFactory() override
;
27 // RefcountedBrowserContextKeyedServiceFactory methods:
28 scoped_refptr
<RefcountedKeyedService
> BuildServiceInstanceFor(
29 content::BrowserContext
* context
) const override
;
30 content::BrowserContext
* GetBrowserContextToUse(
31 content::BrowserContext
* context
) const override
;
33 DISALLOW_COPY_AND_ASSIGN(HostContentSettingsMapFactory
);
36 #endif // CHROME_BROWSER_CONTENT_SETTINGS_HOST_CONTENT_SETTINGS_MAP_FACTORY_H_