| 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 12 matching lines...) Expand all Loading... |
| 23 extern const char kProxyServerMode[]; | 23 extern const char kProxyServerMode[]; |
| 24 extern const char kProxyServer[]; | 24 extern const char kProxyServer[]; |
| 25 extern const char kProxyPacUrl[]; | 25 extern const char kProxyPacUrl[]; |
| 26 extern const char kProxyBypassList[]; | 26 extern const char kProxyBypassList[]; |
| 27 extern const char kAlternateErrorPagesEnabled[]; | 27 extern const char kAlternateErrorPagesEnabled[]; |
| 28 extern const char kSearchSuggestEnabled[]; | 28 extern const char kSearchSuggestEnabled[]; |
| 29 extern const char kDnsPrefetchingEnabled[]; | 29 extern const char kDnsPrefetchingEnabled[]; |
| 30 extern const char kSafeBrowsingEnabled[]; | 30 extern const char kSafeBrowsingEnabled[]; |
| 31 extern const char kMetricsReportingEnabled[]; | 31 extern const char kMetricsReportingEnabled[]; |
| 32 extern const char kPasswordManagerEnabled[]; | 32 extern const char kPasswordManagerEnabled[]; |
| 33 extern const char kAutoFillEnabled[]; |
| 33 extern const char kDisabledPluginsList[]; | 34 extern const char kDisabledPluginsList[]; |
| 34 extern const char kApplicationLocaleValue[]; | 35 extern const char kApplicationLocaleValue[]; |
| 35 extern const char kSyncDisabled[]; | 36 extern const char kSyncDisabled[]; |
| 36 extern const char kExtensionInstallAllowList[]; | 37 extern const char kExtensionInstallAllowList[]; |
| 37 extern const char kExtensionInstallDenyList[]; | 38 extern const char kExtensionInstallDenyList[]; |
| 38 extern const char kShowHomeButton[]; | 39 extern const char kShowHomeButton[]; |
| 39 | 40 |
| 40 } // namespace key | 41 } // namespace key |
| 41 | 42 |
| 42 } // namespace policy | 43 } // namespace policy |
| 43 | 44 |
| 44 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ | 45 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ |
| OLD | NEW |