| 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, |
| 60 kPolicyDefaultGeolocationSetting, |
| 59 kPolicyExtensionInstallForceList, | 61 kPolicyExtensionInstallForceList, |
| 60 kPolicyChromeOsLockOnIdleSuspend, | 62 kPolicyChromeOsLockOnIdleSuspend, |
| 61 kPolicyAuthSchemes, | 63 kPolicyAuthSchemes, |
| 62 kPolicyDisableAuthNegotiateCnameLookup, | 64 kPolicyDisableAuthNegotiateCnameLookup, |
| 63 kPolicyEnableAuthNegotiatePort, | 65 kPolicyEnableAuthNegotiatePort, |
| 64 kPolicyAuthServerWhitelist, | 66 kPolicyAuthServerWhitelist, |
| 65 kPolicyAuthNegotiateDelegateWhitelist, | 67 kPolicyAuthNegotiateDelegateWhitelist, |
| 66 kPolicyGSSAPILibraryName, | 68 kPolicyGSSAPILibraryName, |
| 67 }; | 69 }; |
| 68 | 70 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 85 protected: | 87 protected: |
| 86 ConfigurationPolicyStoreInterface() {} | 88 ConfigurationPolicyStoreInterface() {} |
| 87 | 89 |
| 88 private: | 90 private: |
| 89 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); | 91 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); |
| 90 }; | 92 }; |
| 91 | 93 |
| 92 } // namespace policy | 94 } // namespace policy |
| 93 | 95 |
| 94 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 96 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| OLD | NEW |