blob: 46418aeb106b70f8d60a09753639d8f21fdb8397 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_FACTORY_H_
#define CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_FACTORY_H_
#include <map>
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "components/keyed_service/content/browser_context_keyed_base_factory.h"
template <typename T>
struct DefaultSingletonTraits;
class Profile;
namespace base {
class SequencedTaskRunner;
}
namespace content {
class BrowserContext;
}
namespace policy {
class ProfilePolicyConnector;
// Creates ProfilePolicyConnectors for Profiles, which manage the common
// policy providers and other policy components.
// TODO(joaodasilva): convert this class to a proper PKS once the PrefService,
// which depends on this class, becomes a PKS too.
class ProfilePolicyConnectorFactory : public BrowserContextKeyedBaseFactory {
public:
// Returns the ProfilePolicyConnectorFactory singleton.
static ProfilePolicyConnectorFactory* GetInstance();
// Returns the ProfilePolicyConnector associated with |profile|. This is only
// valid before |profile| is shut down.
static ProfilePolicyConnector* GetForProfile(Profile* profile);
// Creates a new ProfilePolicyConnector for |profile|, which must be managed
// by the caller. Subsequent calls to GetForProfile() will return the instance
// created, as long as it lives.
// If |force_immediate_load| is true then policy is loaded synchronously on
// startup.
static scoped_ptr<ProfilePolicyConnector> CreateForProfile(
Profile* profile,
bool force_immediate_load);
// Overrides the |connector| for the given |profile|; use only in tests.
// Once this class becomes a proper PKS then it can reuse the testing
// methods of BrowserContextKeyedServiceFactory.
void SetServiceForTesting(Profile* profile,
ProfilePolicyConnector* connector);
private:
friend struct DefaultSingletonTraits<ProfilePolicyConnectorFactory>;
ProfilePolicyConnectorFactory();
virtual ~ProfilePolicyConnectorFactory();
ProfilePolicyConnector* GetForProfileInternal(Profile* profile);
scoped_ptr<ProfilePolicyConnector> CreateForProfileInternal(
Profile* profile,
bool force_immediate_load);
// BrowserContextKeyedBaseFactory:
virtual void BrowserContextShutdown(
content::BrowserContext* context) OVERRIDE;
virtual void BrowserContextDestroyed(
content::BrowserContext* context) OVERRIDE;
virtual void SetEmptyTestingFactory(
content::BrowserContext* context) OVERRIDE;
virtual void CreateServiceNow(content::BrowserContext* context) OVERRIDE;
typedef std::map<Profile*, ProfilePolicyConnector*> ConnectorMap;
ConnectorMap connectors_;
DISALLOW_COPY_AND_ASSIGN(ProfilePolicyConnectorFactory);
};
} // namespace policy
#endif // CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_FACTORY_H_
|