OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_COMMON_POLICY_CONSTANTS_H_ |
| 6 #define CHROME_COMMON_POLICY_CONSTANTS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "build/build_config.h" |
| 10 |
| 11 namespace policy { |
| 12 |
| 13 #if defined(OS_WIN) |
| 14 // The windows registry path we read the policy configuration from. |
| 15 extern const wchar_t kRegistrySubKey[]; |
| 16 #endif |
| 17 |
| 18 // Key names for the policy settings. |
| 19 namespace key { |
| 20 |
| 21 extern const char kHomepageLocation[]; |
| 22 extern const char kHomepageIsNewTabPage[]; |
| 23 extern const char kProxyServerMode[]; |
| 24 extern const char kProxyServer[]; |
| 25 extern const char kProxyPacUrl[]; |
| 26 extern const char kProxyBypassList[]; |
| 27 extern const char kAlternateErrorPagesEnabled[]; |
| 28 extern const char kSearchSuggestEnabled[]; |
| 29 extern const char kDnsPrefetchingEnabled[]; |
| 30 extern const char kSafeBrowsingEnabled[]; |
| 31 extern const char kMetricsReportingEnabled[]; |
| 32 extern const char kPasswordManagerEnabled[]; |
| 33 extern const char kDisabledPluginsList[]; |
| 34 extern const char kApplicationLocaleValue[]; |
| 35 extern const char kSyncDisabled[]; |
| 36 |
| 37 } // namespace key |
| 38 |
| 39 } // namespace policy |
| 40 |
| 41 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_ |
OLD | NEW |