Roll src/third_party/WebKit f298044:aa8346d (svn 202628:202629)
[chromium-blink-merge.git] / chrome / browser / content_settings / host_content_settings_map_factory.h
blob5e942c99c8f6cae0dae0edd4c2ed6481f339c267
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 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_