| OLD | NEW |
| 1 // Copyright (c) 2011 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 |
| 11 class Value; | 11 class Value; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 kPolicyApplicationLocale, | 43 kPolicyApplicationLocale, |
| 44 kPolicyExtensionInstallAllowList, | 44 kPolicyExtensionInstallAllowList, |
| 45 kPolicyExtensionInstallDenyList, | 45 kPolicyExtensionInstallDenyList, |
| 46 kPolicyShowHomeButton, | 46 kPolicyShowHomeButton, |
| 47 kPolicyDisabledPlugins, | 47 kPolicyDisabledPlugins, |
| 48 kPolicyPrintingEnabled, | 48 kPolicyPrintingEnabled, |
| 49 kPolicyChromeFrameRendererSettings, | 49 kPolicyChromeFrameRendererSettings, |
| 50 kPolicyRenderInChromeFrameList, | 50 kPolicyRenderInChromeFrameList, |
| 51 kPolicyRenderInHostList, | 51 kPolicyRenderInHostList, |
| 52 kPolicyJavascriptEnabled, | 52 kPolicyJavascriptEnabled, |
| 53 kPolicyIncognitoEnabled, | |
| 54 kPolicySavingBrowserHistoryDisabled, | 53 kPolicySavingBrowserHistoryDisabled, |
| 55 kPolicyDeveloperToolsDisabled, | 54 kPolicyDeveloperToolsDisabled, |
| 56 kPolicyBlockThirdPartyCookies, | 55 kPolicyBlockThirdPartyCookies, |
| 57 kPolicyDefaultCookiesSetting, | 56 kPolicyDefaultCookiesSetting, |
| 58 kPolicyDefaultImagesSetting, | 57 kPolicyDefaultImagesSetting, |
| 59 kPolicyDefaultJavaScriptSetting, | 58 kPolicyDefaultJavaScriptSetting, |
| 60 kPolicyDefaultPluginsSetting, | 59 kPolicyDefaultPluginsSetting, |
| 61 kPolicyDefaultPopupsSetting, | 60 kPolicyDefaultPopupsSetting, |
| 62 kPolicyDefaultNotificationSetting, | 61 kPolicyDefaultNotificationSetting, |
| 63 kPolicyDefaultGeolocationSetting, | 62 kPolicyDefaultGeolocationSetting, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 protected: | 105 protected: |
| 107 ConfigurationPolicyStoreInterface() {} | 106 ConfigurationPolicyStoreInterface() {} |
| 108 | 107 |
| 109 private: | 108 private: |
| 110 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); | 109 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); |
| 111 }; | 110 }; |
| 112 | 111 |
| 113 } // namespace policy | 112 } // namespace policy |
| 114 | 113 |
| 115 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 114 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| OLD | NEW |