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