OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/policy_constants.h" | 5 #include "chrome/common/policy_constants.h" |
6 | 6 |
7 namespace policy { | 7 namespace policy { |
8 | 8 |
9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
10 #if defined(GOOGLE_CHROME_BUILD) | 10 #if defined(GOOGLE_CHROME_BUILD) |
(...skipping 14 matching lines...) Expand all Loading... |
25 const char kDefaultSearchProviderKeyword[] = "DefaultSearchProviderKeyword"; | 25 const char kDefaultSearchProviderKeyword[] = "DefaultSearchProviderKeyword"; |
26 const char kDefaultSearchProviderSearchURL[] = | 26 const char kDefaultSearchProviderSearchURL[] = |
27 "DefaultSearchProviderSearchURL"; | 27 "DefaultSearchProviderSearchURL"; |
28 const char kDefaultSearchProviderSuggestURL[] = | 28 const char kDefaultSearchProviderSuggestURL[] = |
29 "DefaultSearchProviderSuggestURL"; | 29 "DefaultSearchProviderSuggestURL"; |
30 const char kDefaultSearchProviderIconURL[] = | 30 const char kDefaultSearchProviderIconURL[] = |
31 "DefaultSearchProviderIconURL"; | 31 "DefaultSearchProviderIconURL"; |
32 const char kDefaultSearchProviderEncodings[] = | 32 const char kDefaultSearchProviderEncodings[] = |
33 "DefaultSearchProviderEncodings"; | 33 "DefaultSearchProviderEncodings"; |
34 const char kDisableSpdy[] = "DisableSpdy"; | 34 const char kDisableSpdy[] = "DisableSpdy"; |
35 const char kProxyServerMode[] = "ProxyServerMode"; | 35 // We consider the name ProxyMode more apt than ProxyServerMode but could |
| 36 // not change it after publishing that name for the win registry and policy |
| 37 // config files. |
| 38 const char kProxyMode[] = "ProxyServerMode"; |
36 const char kProxyServer[] = "ProxyServer"; | 39 const char kProxyServer[] = "ProxyServer"; |
37 const char kProxyPacUrl[] = "ProxyPacUrl"; | 40 const char kProxyPacUrl[] = "ProxyPacUrl"; |
38 const char kProxyBypassList[] = "ProxyBypassList"; | 41 const char kProxyBypassList[] = "ProxyBypassList"; |
39 const char kAlternateErrorPagesEnabled[] = "AlternateErrorPagesEnabled"; | 42 const char kAlternateErrorPagesEnabled[] = "AlternateErrorPagesEnabled"; |
40 const char kSearchSuggestEnabled[] = "SearchSuggestEnabled"; | 43 const char kSearchSuggestEnabled[] = "SearchSuggestEnabled"; |
41 const char kDnsPrefetchingEnabled[] = "DnsPrefetchingEnabled"; | 44 const char kDnsPrefetchingEnabled[] = "DnsPrefetchingEnabled"; |
42 const char kSafeBrowsingEnabled[] = "SafeBrowsingEnabled"; | 45 const char kSafeBrowsingEnabled[] = "SafeBrowsingEnabled"; |
43 const char kMetricsReportingEnabled[] = "MetricsReportingEnabled"; | 46 const char kMetricsReportingEnabled[] = "MetricsReportingEnabled"; |
44 const char kPasswordManagerEnabled[] = "PasswordManagerEnabled"; | 47 const char kPasswordManagerEnabled[] = "PasswordManagerEnabled"; |
45 const char kPasswordManagerAllowShowPasswords[] = | 48 const char kPasswordManagerAllowShowPasswords[] = |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; | 83 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; |
81 | 84 |
82 #if defined(OS_CHROMEOS) | 85 #if defined(OS_CHROMEOS) |
83 // ChromeOS policy constants | 86 // ChromeOS policy constants |
84 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; | 87 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; |
85 #endif | 88 #endif |
86 | 89 |
87 } // namespace key | 90 } // namespace key |
88 | 91 |
89 } // namespace policy | 92 } // namespace policy |
OLD | NEW |