OLD | NEW |
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_POLICY_BROWSER_POLICY_CONNECTOR_H_ | 5 #ifndef CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ |
6 #define CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ | 6 #define CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 // false if the username is empty. | 161 // false if the username is empty. |
162 static bool IsNonEnterpriseUser(const std::string& username); | 162 static bool IsNonEnterpriseUser(const std::string& username); |
163 | 163 |
164 // Registers refresh rate prefs. | 164 // Registers refresh rate prefs. |
165 static void RegisterPrefs(PrefRegistrySimple* registry); | 165 static void RegisterPrefs(PrefRegistrySimple* registry); |
166 | 166 |
167 private: | 167 private: |
168 // Set the timezone as soon as the policies are available. | 168 // Set the timezone as soon as the policies are available. |
169 void SetTimezoneIfPolicyAvailable(); | 169 void SetTimezoneIfPolicyAvailable(); |
170 | 170 |
171 static ConfigurationPolicyProvider* CreatePlatformProvider(); | 171 ConfigurationPolicyProvider* CreatePlatformProvider(); |
172 | 172 |
173 // Whether Init() but not Shutdown() has been invoked. | 173 // Whether Init() but not Shutdown() has been invoked. |
174 bool is_initialized_; | 174 bool is_initialized_; |
175 | 175 |
176 PrefService* local_state_; | 176 PrefService* local_state_; |
177 scoped_refptr<net::URLRequestContextGetter> request_context_; | 177 scoped_refptr<net::URLRequestContextGetter> request_context_; |
178 | 178 |
179 // Used to convert policies to preferences. The providers declared below | 179 // Used to convert policies to preferences. The providers declared below |
180 // may trigger policy updates during shutdown, which will result in | 180 // may trigger policy updates during shutdown, which will result in |
181 // |handler_list_| being consulted for policy translation. | 181 // |handler_list_| being consulted for policy translation. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 scoped_ptr<AppPackUpdater> app_pack_updater_; | 220 scoped_ptr<AppPackUpdater> app_pack_updater_; |
221 scoped_ptr<NetworkConfigurationUpdater> network_configuration_updater_; | 221 scoped_ptr<NetworkConfigurationUpdater> network_configuration_updater_; |
222 #endif | 222 #endif |
223 | 223 |
224 DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnector); | 224 DISALLOW_COPY_AND_ASSIGN(BrowserPolicyConnector); |
225 }; | 225 }; |
226 | 226 |
227 } // namespace policy | 227 } // namespace policy |
228 | 228 |
229 #endif // CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ | 229 #endif // CHROME_BROWSER_POLICY_BROWSER_POLICY_CONNECTOR_H_ |
OLD | NEW |