Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Side by Side Diff: chrome/common/policy_constants.cc

Issue 5958014: Policy: Add ProxyMode and deprecate ProxyServerMode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: check final diff Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 16 matching lines...) Expand all
27 "DefaultSearchProviderSearchURL"; 27 "DefaultSearchProviderSearchURL";
28 const char kDefaultSearchProviderSuggestURL[] = 28 const char kDefaultSearchProviderSuggestURL[] =
29 "DefaultSearchProviderSuggestURL"; 29 "DefaultSearchProviderSuggestURL";
30 const char kDefaultSearchProviderInstantURL[] = 30 const char kDefaultSearchProviderInstantURL[] =
31 "DefaultSearchProviderInstantURL"; 31 "DefaultSearchProviderInstantURL";
32 const char kDefaultSearchProviderIconURL[] = 32 const char kDefaultSearchProviderIconURL[] =
33 "DefaultSearchProviderIconURL"; 33 "DefaultSearchProviderIconURL";
34 const char kDefaultSearchProviderEncodings[] = 34 const char kDefaultSearchProviderEncodings[] =
35 "DefaultSearchProviderEncodings"; 35 "DefaultSearchProviderEncodings";
36 const char kDisableSpdy[] = "DisableSpdy"; 36 const char kDisableSpdy[] = "DisableSpdy";
37 // We consider the name ProxyMode more apt than ProxyServerMode but could 37 const char kProxyMode[] = "ProxyMode";
38 // not change it after publishing that name for the win registry and policy 38 // Deprecated name of policy to set proxy server mode
39 // config files. 39 const char kProxyServerMode[] = "ProxyServerMode";
40 const char kProxyMode[] = "ProxyServerMode";
41 const char kProxyServer[] = "ProxyServer"; 40 const char kProxyServer[] = "ProxyServer";
42 const char kProxyPacUrl[] = "ProxyPacUrl"; 41 const char kProxyPacUrl[] = "ProxyPacUrl";
43 const char kProxyBypassList[] = "ProxyBypassList"; 42 const char kProxyBypassList[] = "ProxyBypassList";
44 const char kAlternateErrorPagesEnabled[] = "AlternateErrorPagesEnabled"; 43 const char kAlternateErrorPagesEnabled[] = "AlternateErrorPagesEnabled";
45 const char kSearchSuggestEnabled[] = "SearchSuggestEnabled"; 44 const char kSearchSuggestEnabled[] = "SearchSuggestEnabled";
46 const char kDnsPrefetchingEnabled[] = "DnsPrefetchingEnabled"; 45 const char kDnsPrefetchingEnabled[] = "DnsPrefetchingEnabled";
47 const char kSafeBrowsingEnabled[] = "SafeBrowsingEnabled"; 46 const char kSafeBrowsingEnabled[] = "SafeBrowsingEnabled";
48 const char kMetricsReportingEnabled[] = "MetricsReportingEnabled"; 47 const char kMetricsReportingEnabled[] = "MetricsReportingEnabled";
49 const char kPasswordManagerEnabled[] = "PasswordManagerEnabled"; 48 const char kPasswordManagerEnabled[] = "PasswordManagerEnabled";
50 const char kPasswordManagerAllowShowPasswords[] = 49 const char kPasswordManagerAllowShowPasswords[] =
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes"; 84 const char kChromeFrameContentTypes[] = "ChromeFrameContentTypes";
86 85
87 #if defined(OS_CHROMEOS) 86 #if defined(OS_CHROMEOS)
88 // ChromeOS policy constants 87 // ChromeOS policy constants
89 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend"; 88 const char kChromeOsLockOnIdleSuspend[] = "ChromeOsLockOnIdleSuspend";
90 #endif 89 #endif
91 90
92 } // namespace key 91 } // namespace key
93 92
94 } // namespace policy 93 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/common/policy_constants.h ('k') | tools/grit/grit/format/policy_templates/policy_template_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698