Roll src/third_party/WebKit a3b4a2e:7441784 (svn 202551:202552)
[chromium-blink-merge.git] / extensions / browser / extension_prefs_factory.h
blob3ddc2b96399c7a27266680da8b1e681c98766e79
1 // Copyright 2014 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 EXTENSIONS_BROWSER_EXTENSION_PREFS_FACTORY_H_
6 #define EXTENSIONS_BROWSER_EXTENSION_PREFS_FACTORY_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
12 namespace extensions {
14 class ExtensionPrefs;
16 class ExtensionPrefsFactory : public BrowserContextKeyedServiceFactory {
17 public:
18 static ExtensionPrefs* GetForBrowserContext(content::BrowserContext* context);
20 static ExtensionPrefsFactory* GetInstance();
22 void SetInstanceForTesting(content::BrowserContext* context,
23 scoped_ptr<ExtensionPrefs> prefs);
25 private:
26 friend struct base::DefaultSingletonTraits<ExtensionPrefsFactory>;
28 ExtensionPrefsFactory();
29 ~ExtensionPrefsFactory() override;
31 KeyedService* BuildServiceInstanceFor(
32 content::BrowserContext* context) const override;
33 content::BrowserContext* GetBrowserContextToUse(
34 content::BrowserContext* context) const override;
37 } // namespace extensions
39 #endif // EXTENSIONS_BROWSER_EXTENSION_PREFS_FACTORY_H_