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