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_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_H_
6 #define CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_H_
8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory.h"
13 class PushMessagingPermissionContext
;
15 class PushMessagingPermissionContextFactory
16 : public BrowserContextKeyedServiceFactory
{
18 static PushMessagingPermissionContext
* GetForProfile(Profile
* profile
);
19 static PushMessagingPermissionContextFactory
* GetInstance();
22 friend struct DefaultSingletonTraits
<PushMessagingPermissionContextFactory
>;
24 PushMessagingPermissionContextFactory();
25 ~PushMessagingPermissionContextFactory() override
;
27 // BrowserContextKeyedBaseFactory methods:
28 KeyedService
* BuildServiceInstanceFor(
29 content::BrowserContext
* profile
) const override
;
30 content::BrowserContext
* GetBrowserContextToUse(
31 content::BrowserContext
* context
) const override
;
33 DISALLOW_COPY_AND_ASSIGN(PushMessagingPermissionContextFactory
);
36 #endif // CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_H_