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 base::DefaultSingletonTraits
<
23 PushMessagingPermissionContextFactory
>;
25 PushMessagingPermissionContextFactory();
26 ~PushMessagingPermissionContextFactory() override
;
28 // BrowserContextKeyedBaseFactory methods:
29 KeyedService
* BuildServiceInstanceFor(
30 content::BrowserContext
* profile
) const override
;
31 content::BrowserContext
* GetBrowserContextToUse(
32 content::BrowserContext
* context
) const override
;
34 DISALLOW_COPY_AND_ASSIGN(PushMessagingPermissionContextFactory
);
37 #endif // CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_H_