| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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, |
| 53 kPolicySavingBrowserHistoryDisabled, | 54 kPolicySavingBrowserHistoryDisabled, |
| 54 kPolicyDeveloperToolsDisabled, | 55 kPolicyDeveloperToolsDisabled, |
| 55 kPolicyBlockThirdPartyCookies, | 56 kPolicyBlockThirdPartyCookies, |
| 56 kPolicyDefaultCookiesSetting, | 57 kPolicyDefaultCookiesSetting, |
| 57 kPolicyDefaultImagesSetting, | 58 kPolicyDefaultImagesSetting, |
| 58 kPolicyDefaultJavaScriptSetting, | 59 kPolicyDefaultJavaScriptSetting, |
| 59 kPolicyDefaultPluginsSetting, | 60 kPolicyDefaultPluginsSetting, |
| 60 kPolicyDefaultPopupsSetting, | 61 kPolicyDefaultPopupsSetting, |
| 61 kPolicyDefaultNotificationSetting, | 62 kPolicyDefaultNotificationSetting, |
| 62 kPolicyDefaultGeolocationSetting, | 63 kPolicyDefaultGeolocationSetting, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 protected: | 106 protected: |
| 106 ConfigurationPolicyStoreInterface() {} | 107 ConfigurationPolicyStoreInterface() {} |
| 107 | 108 |
| 108 private: | 109 private: |
| 109 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); | 110 DISALLOW_COPY_AND_ASSIGN(ConfigurationPolicyStoreInterface); |
| 110 }; | 111 }; |
| 111 | 112 |
| 112 } // namespace policy | 113 } // namespace policy |
| 113 | 114 |
| 114 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ | 115 #endif // CHROME_BROWSER_POLICY_CONFIGURATION_POLICY_STORE_INTERFACE_H_ |
| OLD | NEW |