Refactor SharedMemory::Create and fix a rare file leak.
[chromium-blink-merge.git] / chrome / browser / push_messaging / push_messaging_permission_context_factory.h
blob84e4bc1d0832c7bff7aa4fb5406ab588c42035fa
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"
11 class Profile;
13 class PushMessagingPermissionContext;
15 class PushMessagingPermissionContextFactory
16 : public BrowserContextKeyedServiceFactory {
17 public:
18 static PushMessagingPermissionContext* GetForProfile(Profile* profile);
19 static PushMessagingPermissionContextFactory* GetInstance();
21 private:
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_