// 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_H_ #define CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_H_ #include #include "base/basictypes.h" #include "base/memory/scoped_ptr.h" #include "components/keyed_service/core/keyed_service.h" namespace user_manager { class User; } namespace policy { class CloudPolicyManager; class ConfigurationPolicyProvider; class PolicyService; class SchemaRegistry; // A KeyedService that creates and manages the per-Profile policy // components. class ProfilePolicyConnector : public KeyedService { public: ProfilePolicyConnector(); ~ProfilePolicyConnector() override; // If |force_immediate_load| then disk caches will be loaded synchronously. void Init(bool force_immediate_load, #if defined(OS_CHROMEOS) const user_manager::User* user, #endif SchemaRegistry* schema_registry, CloudPolicyManager* user_cloud_policy_manager); void InitForTesting(scoped_ptr service); void OverrideIsManagedForTesting(bool is_managed); // KeyedService: void Shutdown() override; // This is never NULL. PolicyService* policy_service() const { return policy_service_.get(); } // Returns true if this Profile is under cloud policy management. bool IsManaged() const; // Returns the cloud policy management domain, if this Profile is under // cloud policy management. Otherwise returns an empty string. std::string GetManagementDomain() const; // Returns true if the |name| Chrome policy is currently set via the // CloudPolicyManager and isn't being overridden by a higher-level provider. bool IsPolicyFromCloudPolicy(const char* name) const; private: #if defined(ENABLE_CONFIGURATION_POLICY) #if defined(OS_CHROMEOS) // Some of the user policy configuration affects browser global state, and // can only come from one Profile. |is_primary_user_| is true if this // connector belongs to the first signed-in Profile, and in that case that // Profile's policy is the one that affects global policy settings in // local state. bool is_primary_user_; scoped_ptr special_user_policy_provider_; #endif // defined(OS_CHROMEOS) scoped_ptr wrapped_platform_policy_provider_; CloudPolicyManager* user_cloud_policy_manager_; #endif // defined(ENABLE_CONFIGURATION_POLICY) scoped_ptr policy_service_; scoped_ptr is_managed_override_; DISALLOW_COPY_AND_ASSIGN(ProfilePolicyConnector); }; } // namespace policy #endif // CHROME_BROWSER_POLICY_PROFILE_POLICY_CONNECTOR_H_