| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 5 #ifndef CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| 6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 6 #define CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 // configuration_policy_type.h is generated. See policy_template.json for | |
| 11 // policy definitions. | |
| 12 #include "policy/configuration_policy_type.h" | 10 #include "policy/configuration_policy_type.h" |
| 13 | 11 |
| 14 class Value; | 12 class Value; |
| 15 | 13 |
| 16 namespace policy { | 14 namespace policy { |
| 17 | 15 |
| 18 // Constants for the "Proxy Server Mode" defined in the policies. | 16 // Constants for the "Proxy Server Mode" defined in the policies. |
| 19 // Note that these diverge from internal presentation defined in | 17 // Note that these diverge from internal presentation defined in |
| 20 // ProxyPrefs::ProxyMode for legacy reasons. The following four | 18 // ProxyPrefs::ProxyMode for legacy reasons. The following four |
| 21 // PolicyProxyModeType types were not very precise and had overlapping use | 19 // PolicyProxyModeType types were not very precise and had overlapping use |
| (...skipping 25 matching lines...) Expand all Loading... |
| 47 protected: | 45 protected: |
| 48 ConfigurationPolicyStoreInterface() {} | 46 ConfigurationPolicyStoreInterface() {} |
| 49 | 47 |
| 50 private: | 48 private: |
| 51 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); | 49 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); |
| 52 }; | 50 }; |
| 53 | 51 |
| 54 } // namespace policy | 52 } // namespace policy |
| 55 | 53 |
| 56 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 54 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| OLD | NEW |