Add a webstorePrivate API to show a permission prompt for delegated bundle installs
[chromium-blink-merge.git] / chrome / browser / extensions / warning_badge_service_factory.h
blob9d378e5e636f909cd988a6bb0d9e9501bcc3adbf
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 CHROME_BROWSER_EXTENSIONS_EXTENSION_WARNING_BADGE_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_WARNING_BADGE_SERVICE_FACTORY_H_
8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
11 namespace extensions {
13 class WarningBadgeService;
15 class WarningBadgeServiceFactory : public BrowserContextKeyedServiceFactory {
16 public:
17 static WarningBadgeService* GetForBrowserContext(
18 content::BrowserContext* context);
19 static WarningBadgeServiceFactory* GetInstance();
21 private:
22 friend struct DefaultSingletonTraits<WarningBadgeServiceFactory>;
24 WarningBadgeServiceFactory();
25 ~WarningBadgeServiceFactory() override;
27 // BrowserContextKeyedServiceFactory implementation
28 KeyedService* BuildServiceInstanceFor(
29 content::BrowserContext* context) const override;
30 content::BrowserContext* GetBrowserContextToUse(
31 content::BrowserContext* context) const override;
32 bool ServiceIsCreatedWithBrowserContext() const override;
34 DISALLOW_COPY_AND_ASSIGN(WarningBadgeServiceFactory);
37 } // namespace extensions
39 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WARNING_BADGE_SERVICE_FACTORY_H_