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

Side by Side Diff: chrome/browser/chromeos/policy/proxy_policy_provider.h

Issue 60823003: Introduced a ForwardingPolicyProvider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed ios Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/policy/proxy_policy_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_PROXY_POLICY_PROVIDER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_POLICY_PROXY_POLICY_PROVIDER_H_
6 #define CHROME_BROWSER_CHROMEOS_POLICY_PROXY_POLICY_PROVIDER_H_ 6 #define CHROME_BROWSER_CHROMEOS_POLICY_PROXY_POLICY_PROVIDER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/policy/configuration_policy_provider.h" 10 #include "chrome/browser/policy/configuration_policy_provider.h"
(...skipping 11 matching lines...) Expand all
22 // Updates the provider this proxy delegates to. 22 // Updates the provider this proxy delegates to.
23 void SetDelegate(ConfigurationPolicyProvider* delegate); 23 void SetDelegate(ConfigurationPolicyProvider* delegate);
24 24
25 // ConfigurationPolicyProvider: 25 // ConfigurationPolicyProvider:
26 virtual void Shutdown() OVERRIDE; 26 virtual void Shutdown() OVERRIDE;
27 virtual void RefreshPolicies() OVERRIDE; 27 virtual void RefreshPolicies() OVERRIDE;
28 28
29 // ConfigurationPolicyProvider::Observer: 29 // ConfigurationPolicyProvider::Observer:
30 virtual void OnUpdatePolicy(ConfigurationPolicyProvider* provider) OVERRIDE; 30 virtual void OnUpdatePolicy(ConfigurationPolicyProvider* provider) OVERRIDE;
31 31
32 // SchemaRegistry::Observer:
33 virtual void OnSchemaRegistryUpdated(bool has_new_schemas) OVERRIDE;
34
35 private: 32 private:
36 ConfigurationPolicyProvider* delegate_; 33 ConfigurationPolicyProvider* delegate_;
37 34
38 DISALLOW_COPY_AND_ASSIGN(ProxyPolicyProvider); 35 DISALLOW_COPY_AND_ASSIGN(ProxyPolicyProvider);
39 }; 36 };
40 37
41 } // namespace policy 38 } // namespace policy
42 39
43 #endif // CHROME_BROWSER_CHROMEOS_POLICY_PROXY_POLICY_PROVIDER_H_ 40 #endif // CHROME_BROWSER_CHROMEOS_POLICY_PROXY_POLICY_PROVIDER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/policy/proxy_policy_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698