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 #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"; |
| 34 |
| 35 } // namespace key |
| 36 |
| 37 } // namespace policy |
OLD | NEW |