OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 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. | |
4 | |
5 #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_READER_H_ | |
6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_READER_H_ | |
7 #pragma once | |
8 | |
9 #include "base/scoped_ptr.h" | |
10 #include "base/values.h" | |
11 #include "chrome/browser/policy/configuration_policy_provider.h" | |
12 #include "chrome/browser/policy/policy_status_info.h" | |
13 | |
14 namespace policy { | |
15 | |
16 class ConfigurationPolicyStatusKeeper; | |
17 | |
18 // This class reads policy information from a ConfigurationPolicyProvider in | |
19 // order to determine the status of a policy (this includes it's value and | |
Mattias Nissler (ping if slow)
2011/08/24 11:57:09
s/it's/its/
simo
2011/08/25 10:06:36
Done.
| |
20 // whether it could be enforced on the client or not), as required by the | |
21 // about:policy UI. | |
22 class ConfigurationPolicyReader : public ConfigurationPolicyProvider::Observer { | |
23 public: | |
24 ConfigurationPolicyReader(ConfigurationPolicyProvider* provider, | |
25 PolicyStatusInfo::PolicyLevel policy_level); | |
Mattias Nissler (ping if slow)
2011/08/24 11:57:09
indentation
simo
2011/08/25 10:06:36
Done.
| |
26 virtual ~ConfigurationPolicyReader(); | |
27 | |
28 // ConfigurationPolicyProvider::Observer methods: | |
29 virtual void OnUpdatePolicy(); | |
30 virtual void OnProviderGoingAway(); | |
31 | |
32 // Creates a ConfigurationPolicyReader that reads managed platform policy. | |
33 static ConfigurationPolicyReader* | |
34 CreateManagedPlatformPolicyReader( | |
35 PolicyStatusInfo::PolicyLevel policy_level); | |
36 | |
37 // Creates a ConfigurationPolicyReader that reads managed cloud policy. | |
38 static ConfigurationPolicyReader* | |
39 CreateManagedCloudPolicyReader( | |
40 PolicyStatusInfo::PolicyLevel policy_level); | |
41 | |
42 // Creates a ConfigurationPolicyReader that reads recommended platform policy. | |
43 static ConfigurationPolicyReader* | |
44 CreateRecommendedPlatformPolicyReader( | |
45 PolicyStatusInfo::PolicyLevel policy_level); | |
46 | |
47 // Creates a ConfigurationPolicyReader that reads recommended cloud policy. | |
48 static ConfigurationPolicyReader* | |
49 CreateRecommendedCloudPolicyReader( | |
50 PolicyStatusInfo::PolicyLevel policy_level); | |
51 | |
52 // Returns a pointer to a DictionaryValue object containing policy status | |
53 // information for the UI. Ownership of the return value is acquired by the | |
54 // caller. Returns NULL if the reader is not aware of the given policy. | |
55 DictionaryValue* GetPolicyStatus(ConfigurationPolicyType policy) const; | |
56 | |
57 private: | |
58 // Updates the policy information held in this reader. This is called when | |
59 // the ConfigurationPolicyProvider is updated. | |
60 void Refresh(); | |
61 | |
62 // The policy provider from which policy settings are read. | |
63 ConfigurationPolicyProvider* provider_; | |
64 | |
65 // Whether this ConfigurationPolicyReader contains managed policies. | |
66 PolicyStatusInfo::PolicyLevel policy_level_; | |
67 | |
68 // Current policy status. | |
69 scoped_ptr<ConfigurationPolicyStatusKeeper> policy_keeper_; | |
70 | |
71 ConfigurationPolicyObserverRegistrar registrar_; | |
72 | |
73 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyReader); | |
74 }; | |
75 | |
76 // This class combines the policy information from different | |
77 // ConfigurationPolicyReaders into a single list of policy information that the | |
78 // about:policy UI can display. | |
79 class PolicyStatus { | |
Mattias Nissler (ping if slow)
2011/08/24 11:57:09
Do we have a test case for this class?
simo
2011/08/25 10:06:36
Now we do!
| |
80 public: | |
81 PolicyStatus(); | |
82 ~PolicyStatus(); | |
83 | |
84 // Returns a ListValue pointer containing the status information of all | |
85 // policies supported by the client. |any_policies_sent| is set to true if | |
86 // there are policies in the list that were sent by a provider, otherwise | |
87 // it is set tof alse. This is for the about:policy UI to display. | |
88 ListValue* GetPolicyStatusList(bool& any_policies_sent) const; | |
Mattias Nissler (ping if slow)
2011/08/24 11:57:09
out parameters should be pointers per the style gu
simo
2011/08/25 10:06:36
Done.
| |
89 | |
90 // Returns a string16 containing the actual name of the policy corresponding | |
91 // to |policy_type|. Returns an empty string if there is no such policy_type | |
92 // among the policies supported by the client. | |
93 static string16 GetPolicyName(ConfigurationPolicyType policy_type); | |
94 | |
95 private: | |
96 typedef ConfigurationPolicyProvider::PolicyDefinitionList | |
97 PolicyDefinitionList; | |
98 | |
99 // Add the policy information for |policy| to the ListValue pointed to be | |
100 // |list| as it is returned by the different ConfigurationPolicyReader | |
101 // objects. Returns true if a policy was added and false otherwise. | |
102 bool AddPolicyFromReaders(ConfigurationPolicyType policy, | |
103 ListValue* list) const; | |
104 | |
105 scoped_ptr<ConfigurationPolicyReader> managed_platform_; | |
106 scoped_ptr<ConfigurationPolicyReader> managed_cloud_; | |
107 scoped_ptr<ConfigurationPolicyReader> recommended_platform_; | |
108 scoped_ptr<ConfigurationPolicyReader> recommended_cloud_; | |
109 | |
110 DISALLOW_COPY_AND_ASSIGN(PolicyStatus); | |
111 }; | |
112 | |
113 } // namespace policy | |
114 | |
115 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_READER_H_ | |
OLD | NEW |