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/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 // The name of the default search provider. | 138 // The name of the default search provider. |
139 const wchar_t kDefaultSearchProviderName[] = L"default_search_provider.name"; | 139 const wchar_t kDefaultSearchProviderName[] = L"default_search_provider.name"; |
140 | 140 |
141 // The id of the default search provider. | 141 // The id of the default search provider. |
142 const wchar_t kDefaultSearchProviderID[] = L"default_search_provider.id"; | 142 const wchar_t kDefaultSearchProviderID[] = L"default_search_provider.id"; |
143 | 143 |
144 // The prepopulate id of the default search provider. | 144 // The prepopulate id of the default search provider. |
145 const wchar_t kDefaultSearchProviderPrepopulateID[] = | 145 const wchar_t kDefaultSearchProviderPrepopulateID[] = |
146 L"default_search_provider.prepopulate_id"; | 146 L"default_search_provider.prepopulate_id"; |
147 | 147 |
| 148 // The dictionary key used when the default search providers are given |
| 149 // in the preferences file. Normally they are copied from the master |
| 150 // preferences file. |
| 151 const wchar_t kSearchProviderOverrides[] = |
| 152 L"search_provider_overrides"; |
| 153 // The format version for the dictionary above. |
| 154 const wchar_t kSearchProviderOverridesVersion[] = |
| 155 L"search_provider_overrides_version"; |
| 156 |
148 // Boolean which specifies whether we should ask the user if we should download | 157 // Boolean which specifies whether we should ask the user if we should download |
149 // a file (true) or just download it automatically. | 158 // a file (true) or just download it automatically. |
150 const wchar_t kPromptForDownload[] = L"download.prompt_for_download"; | 159 const wchar_t kPromptForDownload[] = L"download.prompt_for_download"; |
151 | 160 |
152 // A boolean pref set to true if we're using Link Doctor error pages. | 161 // A boolean pref set to true if we're using Link Doctor error pages. |
153 const wchar_t kAlternateErrorPagesEnabled[] = L"alternate_error_pages.enabled"; | 162 const wchar_t kAlternateErrorPagesEnabled[] = L"alternate_error_pages.enabled"; |
154 | 163 |
155 // A boolean pref set to true if DNS pre-fetching is being done in browser. | 164 // A boolean pref set to true if DNS pre-fetching is being done in browser. |
156 const wchar_t kDnsPrefetchingEnabled[] = L"dns_prefetching.enabled"; | 165 const wchar_t kDnsPrefetchingEnabled[] = L"dns_prefetching.enabled"; |
157 | 166 |
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 // String specifying the proxy server. For a specification of the expected | 922 // String specifying the proxy server. For a specification of the expected |
914 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 923 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
915 const wchar_t kProxyServer[] = L"proxy.server"; | 924 const wchar_t kProxyServer[] = L"proxy.server"; |
916 // URL to the proxy .pac file. | 925 // URL to the proxy .pac file. |
917 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 926 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
918 // String containing proxy bypass rules. For a specification of the | 927 // String containing proxy bypass rules. For a specification of the |
919 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 928 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
920 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 929 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
921 | 930 |
922 } // namespace prefs | 931 } // namespace prefs |
OLD | NEW |