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

Unified Diff: chrome/browser/policy/profile_policy_connector.h

Issue 23376002: Move ManagedModePolicyProvider functionality to ManagedUserSettingsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/policy/profile_policy_connector.h
diff --git a/chrome/browser/policy/profile_policy_connector.h b/chrome/browser/policy/profile_policy_connector.h
index 209a0530623d6f72874b01709a72f405a783ebca..26af539163e49035cb428be2b4e8e59667463dae 100644
--- a/chrome/browser/policy/profile_policy_connector.h
+++ b/chrome/browser/policy/profile_policy_connector.h
@@ -37,7 +37,6 @@ typedef std::vector<scoped_refptr<X509Certificate> > CertificateList;
namespace policy {
class ConfigurationPolicyProvider;
-class ManagedModePolicyProvider;
class UserNetworkConfigurationUpdater;
class PolicyService;
class PolicyCertVerifier;
@@ -61,12 +60,6 @@ class ProfilePolicyConnector : public BrowserContextKeyedService {
// This is never NULL.
PolicyService* policy_service() const { return policy_service_.get(); }
-#if defined(ENABLE_MANAGED_USERS) && defined(ENABLE_CONFIGURATION_POLICY)
- ManagedModePolicyProvider* managed_mode_policy_provider() const {
- return managed_mode_policy_provider_.get();
- }
-#endif
-
#if defined(OS_CHROMEOS)
// Sets the CertVerifier on which the current list of Web trusted server and
// CA certificates will be set. Policy updates will trigger further calls to
@@ -115,10 +108,6 @@ class ProfilePolicyConnector : public BrowserContextKeyedService {
Profile* profile_;
-#if defined(ENABLE_MANAGED_USERS) && defined(ENABLE_CONFIGURATION_POLICY)
- scoped_ptr<ManagedModePolicyProvider> managed_mode_policy_provider_;
-#endif
-
#endif // ENABLE_CONFIGURATION_POLICY
scoped_ptr<PolicyService> policy_service_;

Powered by Google App Engine
This is Rietveld 408576698