| Index: chrome/common/policy_constants.cc
|
| diff --git a/chrome/common/policy_constants.cc b/chrome/common/policy_constants.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7c0b5b42885a0ed03a4bd6d37c08cb775fc22640
|
| --- /dev/null
|
| +++ b/chrome/common/policy_constants.cc
|
| @@ -0,0 +1,37 @@
|
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/common/policy_constants.h"
|
| +
|
| +namespace policy {
|
| +
|
| +#if defined(OS_WIN)
|
| +#if defined(GOOGLE_CHROME_BUILD)
|
| +const wchar_t kRegistrySubKey[] = L"SOFTWARE\\Policies\\Google\\Chrome";
|
| +#else
|
| +const wchar_t kRegistrySubKey[] = L"SOFTWARE\\Policies\\Chromium";
|
| +#endif
|
| +#endif
|
| +
|
| +namespace key {
|
| +
|
| +const char kHomepageLocation[] = "HomepageLocation";
|
| +const char kHomepageIsNewTabPage[] = "HomepageIsNewTabPage";
|
| +const char kProxyServerMode[] = "ProxyServerMode";
|
| +const char kProxyServer[] = "ProxyServer";
|
| +const char kProxyPacUrl[] = "ProxyPacUrl";
|
| +const char kProxyBypassList[] = "ProxyBypassList";
|
| +const char kAlternateErrorPagesEnabled[] = "AlternateErrorPagesEnabled";
|
| +const char kSearchSuggestEnabled[] = "SearchSuggestEnabled";
|
| +const char kDnsPrefetchingEnabled[] = "DnsPrefetchingEnabled";
|
| +const char kSafeBrowsingEnabled[] = "SafeBrowsingEnabled";
|
| +const char kMetricsReportingEnabled[] = "MetricsReportingEnabled";
|
| +const char kPasswordManagerEnabled[] = "PasswordManagerEnabled";
|
| +const char kDisabledPluginsList[] = "DisabledPluginsList";
|
| +const char kApplicationLocaleValue[] = "ApplicationLocaleValue";
|
| +const char kSyncDisabled[] = "SyncDisabled";
|
| +
|
| +} // namespace key
|
| +
|
| +} // namespace policy
|
|
|