[email protected] | e862800 | 2010-08-02 09:59:40 | [diff] [blame] | 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 | #include "chrome/common/policy_constants.h" |
| 6 | |
| 7 | namespace policy { |
| 8 | |
| 9 | #if defined(OS_WIN) |
| 10 | #if defined(GOOGLE_CHROME_BUILD) |
| 11 | const wchar_t kRegistrySubKey[] = L"SOFTWARE\\Policies\\Google\\Chrome"; |
| 12 | #else |
| 13 | const wchar_t kRegistrySubKey[] = L"SOFTWARE\\Policies\\Chromium"; |
| 14 | #endif |
| 15 | #endif |
| 16 | |
| 17 | namespace key { |
| 18 | |
| 19 | const char kHomepageLocation[] = "HomepageLocation"; |
| 20 | const char kHomepageIsNewTabPage[] = "HomepageIsNewTabPage"; |
| 21 | const char kProxyServerMode[] = "ProxyServerMode"; |
| 22 | const char kProxyServer[] = "ProxyServer"; |
| 23 | const char kProxyPacUrl[] = "ProxyPacUrl"; |
| 24 | const char kProxyBypassList[] = "ProxyBypassList"; |
| 25 | const char kAlternateErrorPagesEnabled[] = "AlternateErrorPagesEnabled"; |
| 26 | const char kSearchSuggestEnabled[] = "SearchSuggestEnabled"; |
| 27 | const char kDnsPrefetchingEnabled[] = "DnsPrefetchingEnabled"; |
| 28 | const char kSafeBrowsingEnabled[] = "SafeBrowsingEnabled"; |
| 29 | const char kMetricsReportingEnabled[] = "MetricsReportingEnabled"; |
| 30 | const char kPasswordManagerEnabled[] = "PasswordManagerEnabled"; |
| 31 | const char kDisabledPluginsList[] = "DisabledPluginsList"; |
| 32 | const char kApplicationLocaleValue[] = "ApplicationLocaleValue"; |
| 33 | const char kSyncDisabled[] = "SyncDisabled"; |
[email protected] | 306a2bd | 2010-08-11 14:56:36 | [diff] [blame^] | 34 | const char kExtensionInstallAllowList[] = "ExtensionInstallWhitelist"; |
| 35 | const char kExtensionInstallDenyList[] = "ExtensionInstallBlacklist"; |
[email protected] | e862800 | 2010-08-02 09:59:40 | [diff] [blame] | 36 | |
| 37 | } // namespace key |
| 38 | |
| 39 | } // namespace policy |