| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 kPolicyDefaultNotificationSetting, | 61 kPolicyDefaultNotificationSetting, |
| 62 kPolicyDefaultGeolocationSetting, | 62 kPolicyDefaultGeolocationSetting, |
| 63 kPolicyExtensionInstallForceList, | 63 kPolicyExtensionInstallForceList, |
| 64 kPolicyChromeOsLockOnIdleSuspend, | 64 kPolicyChromeOsLockOnIdleSuspend, |
| 65 kPolicyAuthSchemes, | 65 kPolicyAuthSchemes, |
| 66 kPolicyDisableAuthNegotiateCnameLookup, | 66 kPolicyDisableAuthNegotiateCnameLookup, |
| 67 kPolicyEnableAuthNegotiatePort, | 67 kPolicyEnableAuthNegotiatePort, |
| 68 kPolicyAuthServerWhitelist, | 68 kPolicyAuthServerWhitelist, |
| 69 kPolicyAuthNegotiateDelegateWhitelist, | 69 kPolicyAuthNegotiateDelegateWhitelist, |
| 70 kPolicyGSSAPILibraryName, | 70 kPolicyGSSAPILibraryName, |
| 71 kPolicyDisable3DAPIs | 71 kPolicyDisable3DAPIs, |
| 72 kPolicyPolicyRefreshRate, |
| 72 }; | 73 }; |
| 73 | 74 |
| 74 | 75 |
| 75 // Constants for the "Proxy Server Mode" defined in the policies. | 76 // Constants for the "Proxy Server Mode" defined in the policies. |
| 76 // Note that these diverge from internal presentation defined in | 77 // Note that these diverge from internal presentation defined in |
| 77 // ProxyPrefs::ProxyMode for legacy reasons. The following four | 78 // ProxyPrefs::ProxyMode for legacy reasons. The following four |
| 78 // PolicyProxyModeType types were not very precise and had overlapping use | 79 // PolicyProxyModeType types were not very precise and had overlapping use |
| 79 // cases. | 80 // cases. |
| 80 enum PolicyProxyModeType { | 81 enum PolicyProxyModeType { |
| 81 // Disable Proxy, connect directly. | 82 // Disable Proxy, connect directly. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 104 protected: | 105 protected: |
| 105 ConfigurationPolicyStoreInterface() {} | 106 ConfigurationPolicyStoreInterface() {} |
| 106 | 107 |
| 107 private: | 108 private: |
| 108 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); | 109 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); |
| 109 }; | 110 }; |
| 110 | 111 |
| 111 } // namespace policy | 112 } // namespace policy |
| 112 | 113 |
| 113 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 114 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| OLD | NEW |