diff options
Diffstat (limited to 'chrome/common/policy_constants.h')
-rw-r--r-- | chrome/common/policy_constants.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/chrome/common/policy_constants.h b/chrome/common/policy_constants.h new file mode 100644 index 0000000..37107db --- /dev/null +++ b/chrome/common/policy_constants.h @@ -0,0 +1,41 @@ +// 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. + +#ifndef CHROME_COMMON_POLICY_CONSTANTS_H_ +#define CHROME_COMMON_POLICY_CONSTANTS_H_ +#pragma once + +#include "build/build_config.h" + +namespace policy { + +#if defined(OS_WIN) +// The windows registry path we read the policy configuration from. +extern const wchar_t kRegistrySubKey[]; +#endif + +// Key names for the policy settings. +namespace key { + +extern const char kHomepageLocation[]; +extern const char kHomepageIsNewTabPage[]; +extern const char kProxyServerMode[]; +extern const char kProxyServer[]; +extern const char kProxyPacUrl[]; +extern const char kProxyBypassList[]; +extern const char kAlternateErrorPagesEnabled[]; +extern const char kSearchSuggestEnabled[]; +extern const char kDnsPrefetchingEnabled[]; +extern const char kSafeBrowsingEnabled[]; +extern const char kMetricsReportingEnabled[]; +extern const char kPasswordManagerEnabled[]; +extern const char kDisabledPluginsList[]; +extern const char kApplicationLocaleValue[]; +extern const char kSyncDisabled[]; + +} // namespace key + +} // namespace policy + +#endif // CHROME_COMMON_POLICY_CONSTANTS_H_ |