Don't install marked default apps for enterprise users
[chromium-blink-merge.git] / chrome / browser / policy / profile_policy_connector.h
blob957caa6310e6d4a4f011dd67a888b6f503322881
1 // Copyright (c) 2013 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_POLICY_PROFILE_POLICY_CONNECTOR_H_
6 #define CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_H_
8 #include <string>
10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "components/keyed_service/core/keyed_service.h"
14 namespace user_manager {
15 class User;
18 namespace policy {
20 class CloudPolicyManager;
21 class ConfigurationPolicyProvider;
22 class PolicyService;
23 class SchemaRegistry;
25 // A KeyedService that creates and manages the per-Profile policy
26 // components.
27 class ProfilePolicyConnector : public KeyedService {
28 public:
29 ProfilePolicyConnector();
30 ~ProfilePolicyConnector() override;
32 // If |force_immediate_load| then disk caches will be loaded synchronously.
33 void Init(bool force_immediate_load,
34 #if defined(OS_CHROMEOS)
35 const user_manager::User* user,
36 #endif
37 SchemaRegistry* schema_registry,
38 CloudPolicyManager* user_cloud_policy_manager);
40 void InitForTesting(scoped_ptr<PolicyService> service);
41 void OverrideIsManagedForTesting(bool is_managed);
43 // KeyedService:
44 void Shutdown() override;
46 // This is never NULL.
47 PolicyService* policy_service() const { return policy_service_.get(); }
49 // Returns true if this Profile is under cloud policy management.
50 bool IsManaged() const;
52 // Returns the cloud policy management domain, if this Profile is under
53 // cloud policy management. Otherwise returns an empty string.
54 std::string GetManagementDomain() const;
56 // Returns true if the |name| Chrome policy is currently set via the
57 // CloudPolicyManager and isn't being overridden by a higher-level provider.
58 bool IsPolicyFromCloudPolicy(const char* name) const;
60 private:
61 #if defined(ENABLE_CONFIGURATION_POLICY)
62 #if defined(OS_CHROMEOS)
63 // Some of the user policy configuration affects browser global state, and
64 // can only come from one Profile. |is_primary_user_| is true if this
65 // connector belongs to the first signed-in Profile, and in that case that
66 // Profile's policy is the one that affects global policy settings in
67 // local state.
68 bool is_primary_user_;
70 scoped_ptr<ConfigurationPolicyProvider> special_user_policy_provider_;
71 #endif // defined(OS_CHROMEOS)
73 scoped_ptr<ConfigurationPolicyProvider> wrapped_platform_policy_provider_;
74 CloudPolicyManager* user_cloud_policy_manager_;
75 #endif // defined(ENABLE_CONFIGURATION_POLICY)
77 scoped_ptr<PolicyService> policy_service_;
78 scoped_ptr<bool> is_managed_override_;
80 DISALLOW_COPY_AND_ASSIGN(ProfilePolicyConnector);
83 } // namespace policy
85 #endif // CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_H_