Popular sites on the NTP: check that experiment group StartsWith (rather than IS...
[chromium-blink-merge.git] / chrome / browser / content_settings / host_content_settings_map_factory.h
blob26f6d89c6c47c2945567def66aac256588f12a91
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;
13 class Profile;
15 class HostContentSettingsMapFactory
16 : public RefcountedBrowserContextKeyedServiceFactory {
17 public:
18 static HostContentSettingsMap* GetForProfile(Profile* profile);
19 static HostContentSettingsMapFactory* GetInstance();
21 private:
22 friend struct 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_