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

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

Issue 10449071: Enable user policy handling through the new cloud policy stack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 8 years, 6 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/proxy_policy_provider.h
diff --git a/chrome/browser/policy/proxy_policy_provider.h b/chrome/browser/policy/proxy_policy_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..f3794f270909f261dce90d96a75f48be95c559fa
--- /dev/null
+++ b/chrome/browser/policy/proxy_policy_provider.h
@@ -0,0 +1,42 @@
+// Copyright (c) 2012 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_PROXY_POLICY_PROVIDER_H_
+#define CHROME_BROWSER_POLICY_PROXY_POLICY_PROVIDER_H_
+#pragma once
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+#include "chrome/browser/policy/configuration_policy_provider.h"
+
+namespace policy {
+
+// A policy provider implementation that acts as a proxy for another policy
+// provider, swappable at any point.
+class ProxyPolicyProvider : public ConfigurationPolicyProvider,
+ public ConfigurationPolicyProvider::Observer {
+ public:
+ ProxyPolicyProvider();
+ virtual ~ProxyPolicyProvider();
+
+ // Updates the provider this proxy delegates to.
+ void SetDelegate(ConfigurationPolicyProvider* delegate);
+
+ // ConfigurationPolicyProvider:
+ virtual void RefreshPolicies() OVERRIDE;
+
+ // ConfigurationPolicyProvider::Observer:
+ virtual void OnUpdatePolicy(ConfigurationPolicyProvider* provider) OVERRIDE;
+ virtual void OnProviderGoingAway(
+ ConfigurationPolicyProvider* provider) OVERRIDE;
+
+ private:
+ scoped_ptr<ConfigurationPolicyObserverRegistrar> registrar_;
+
+ DISALLOW_COPY_AND_ASSIGN(ProxyPolicyProvider);
+};
+
+} // namespace policy
+
+#endif // CHROME_BROWSER_POLICY_PROXY_POLICY_PROVIDER_H_
« no previous file with comments | « chrome/browser/policy/mock_device_management_service.cc ('k') | chrome/browser/policy/proxy_policy_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698