| 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_COMMON_POLICY_CONSTANTS_H_ | 5 #ifndef CHROME_COMMON_POLICY_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_POLICY_CONSTANTS_H_ | 6 #define CHROME_COMMON_POLICY_CONSTANTS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 extern const char kMetricsReportingEnabled[]; | 33 extern const char kMetricsReportingEnabled[]; |
| 34 extern const char kPasswordManagerEnabled[]; | 34 extern const char kPasswordManagerEnabled[]; |
| 35 extern const char kDisabledPlugins[]; | 35 extern const char kDisabledPlugins[]; |
| 36 extern const char kAutoFillEnabled[]; | 36 extern const char kAutoFillEnabled[]; |
| 37 extern const char kApplicationLocaleValue[]; | 37 extern const char kApplicationLocaleValue[]; |
| 38 extern const char kSyncDisabled[]; | 38 extern const char kSyncDisabled[]; |
| 39 extern const char kExtensionInstallAllowList[]; | 39 extern const char kExtensionInstallAllowList[]; |
| 40 extern const char kExtensionInstallDenyList[]; | 40 extern const char kExtensionInstallDenyList[]; |
| 41 extern const char kShowHomeButton[]; | 41 extern const char kShowHomeButton[]; |
| 42 | 42 |
| 43 // Chrome Frame specific policy constants |
| 44 extern const char kChromeFrameRendererSettings[]; |
| 45 extern const char kRenderInChromeFrameList[]; |
| 46 extern const char kRenderInHostList[]; |
| 47 |
| 43 } // namespace key | 48 } // namespace key |
| 44 | 49 |
| 45 } // namespace policy | 50 } // namespace policy |
| 46 | 51 |
| 47 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ | 52 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ |
| OLD | NEW |