| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 kPolicyRenderInHostList, | 49 kPolicyRenderInHostList, |
| 50 kPolicyJavascriptEnabled, | 50 kPolicyJavascriptEnabled, |
| 51 kPolicySavingBrowserHistoryDisabled, | 51 kPolicySavingBrowserHistoryDisabled, |
| 52 kPolicyDeveloperToolsDisabled, | 52 kPolicyDeveloperToolsDisabled, |
| 53 kPolicyBlockThirdPartyCookies, | 53 kPolicyBlockThirdPartyCookies, |
| 54 kPolicyDefaultCookiesSetting, | 54 kPolicyDefaultCookiesSetting, |
| 55 kPolicyDefaultImagesSetting, | 55 kPolicyDefaultImagesSetting, |
| 56 kPolicyDefaultJavaScriptSetting, | 56 kPolicyDefaultJavaScriptSetting, |
| 57 kPolicyDefaultPluginsSetting, | 57 kPolicyDefaultPluginsSetting, |
| 58 kPolicyDefaultPopupsSetting, | 58 kPolicyDefaultPopupsSetting, |
| 59 kPolicyDefaultNotificationSetting, |
| 59 kPolicyExtensionInstallForceList, | 60 kPolicyExtensionInstallForceList, |
| 60 kPolicyChromeOsLockOnIdleSuspend, | 61 kPolicyChromeOsLockOnIdleSuspend, |
| 61 kPolicyAuthSchemes, | 62 kPolicyAuthSchemes, |
| 62 kPolicyDisableAuthNegotiateCnameLookup, | 63 kPolicyDisableAuthNegotiateCnameLookup, |
| 63 kPolicyEnableAuthNegotiatePort, | 64 kPolicyEnableAuthNegotiatePort, |
| 64 kPolicyAuthServerWhitelist, | 65 kPolicyAuthServerWhitelist, |
| 65 kPolicyAuthNegotiateDelegateWhitelist, | 66 kPolicyAuthNegotiateDelegateWhitelist, |
| 66 kPolicyGSSAPILibraryName, | 67 kPolicyGSSAPILibraryName, |
| 67 }; | 68 }; |
| 68 | 69 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 85 protected: | 86 protected: |
| 86 ConfigurationPolicyStoreInterface() {} | 87 ConfigurationPolicyStoreInterface() {} |
| 87 | 88 |
| 88 private: | 89 private: |
| 89 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); | 90 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); |
| 90 }; | 91 }; |
| 91 | 92 |
| 92 } // namespace policy | 93 } // namespace policy |
| 93 | 94 |
| 94 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 95 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| OLD | NEW |