Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Side by Side Diff: chrome/browser/push_messaging/push_messaging_permission_context_factory.h

Issue 1312453005: Removed Profile::GetHostContentSettingsMap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed patch conflict Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_ H_ 5 #ifndef CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_ H_
6 #define CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_ H_ 6 #define CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTORY_ H_
7 7
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" 9 #include "chrome/browser/permissions/permission_context_factory_base.h"
10 10
11 class Profile; 11 class Profile;
12 12
13 class PushMessagingPermissionContext; 13 class PushMessagingPermissionContext;
14 14
15 class PushMessagingPermissionContextFactory 15 class PushMessagingPermissionContextFactory
16 : public BrowserContextKeyedServiceFactory { 16 : public PermissionContextFactoryBase {
17 public: 17 public:
18 static PushMessagingPermissionContext* GetForProfile(Profile* profile); 18 static PushMessagingPermissionContext* GetForProfile(Profile* profile);
19 static PushMessagingPermissionContextFactory* GetInstance(); 19 static PushMessagingPermissionContextFactory* GetInstance();
20 20
21 private: 21 private:
22 friend struct base::DefaultSingletonTraits< 22 friend struct base::DefaultSingletonTraits<
23 PushMessagingPermissionContextFactory>; 23 PushMessagingPermissionContextFactory>;
24 24
25 PushMessagingPermissionContextFactory(); 25 PushMessagingPermissionContextFactory();
26 ~PushMessagingPermissionContextFactory() override; 26 ~PushMessagingPermissionContextFactory() override;
27 27
28 // BrowserContextKeyedBaseFactory methods: 28 // BrowserContextKeyedBaseFactory methods:
29 KeyedService* BuildServiceInstanceFor( 29 KeyedService* BuildServiceInstanceFor(
30 content::BrowserContext* profile) const override; 30 content::BrowserContext* profile) const override;
31 content::BrowserContext* GetBrowserContextToUse(
32 content::BrowserContext* context) const override;
33 31
34 DISALLOW_COPY_AND_ASSIGN(PushMessagingPermissionContextFactory); 32 DISALLOW_COPY_AND_ASSIGN(PushMessagingPermissionContextFactory);
35 }; 33 };
36 34
37 #endif // CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTO RY_H_ 35 #endif // CHROME_BROWSER_PUSH_MESSAGING_PUSH_MESSAGING_PERMISSION_CONTEXT_FACTO RY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698