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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 extern const wchar_t kPasswordManagerEnabled[]; | 48 extern const wchar_t kPasswordManagerEnabled[]; |
49 extern const wchar_t kFormAutofillEnabled[]; // OBSOLETE | 49 extern const wchar_t kFormAutofillEnabled[]; // OBSOLETE |
50 extern const wchar_t kSafeBrowsingEnabled[]; | 50 extern const wchar_t kSafeBrowsingEnabled[]; |
51 extern const wchar_t kSearchSuggestEnabled[]; | 51 extern const wchar_t kSearchSuggestEnabled[]; |
52 extern const wchar_t kCookieBehavior[]; // OBSOLETE | 52 extern const wchar_t kCookieBehavior[]; // OBSOLETE |
53 extern const wchar_t kDefaultSearchProviderSearchURL[]; | 53 extern const wchar_t kDefaultSearchProviderSearchURL[]; |
54 extern const wchar_t kDefaultSearchProviderSuggestURL[]; | 54 extern const wchar_t kDefaultSearchProviderSuggestURL[]; |
55 extern const wchar_t kDefaultSearchProviderName[]; | 55 extern const wchar_t kDefaultSearchProviderName[]; |
56 extern const wchar_t kDefaultSearchProviderID[]; | 56 extern const wchar_t kDefaultSearchProviderID[]; |
57 extern const wchar_t kDefaultSearchProviderPrepopulateID[]; | 57 extern const wchar_t kDefaultSearchProviderPrepopulateID[]; |
| 58 extern const wchar_t kSearchProviderOverrides[]; |
| 59 extern const wchar_t kSearchProviderOverridesVersion[]; |
58 extern const wchar_t kPromptForDownload[]; | 60 extern const wchar_t kPromptForDownload[]; |
59 extern const wchar_t kAlternateErrorPagesEnabled[]; | 61 extern const wchar_t kAlternateErrorPagesEnabled[]; |
60 extern const wchar_t kDnsPrefetchingEnabled[]; | 62 extern const wchar_t kDnsPrefetchingEnabled[]; |
61 extern const wchar_t kDnsStartupPrefetchList[]; | 63 extern const wchar_t kDnsStartupPrefetchList[]; |
62 extern const wchar_t kDnsHostReferralList[]; | 64 extern const wchar_t kDnsHostReferralList[]; |
63 extern const wchar_t kCookiePromptExpanded[]; | 65 extern const wchar_t kCookiePromptExpanded[]; |
64 #if defined(USE_NSS) | 66 #if defined(USE_NSS) |
65 extern const wchar_t kCertRevocationCheckingEnabled[]; | 67 extern const wchar_t kCertRevocationCheckingEnabled[]; |
66 extern const wchar_t kSSL2Enabled[]; | 68 extern const wchar_t kSSL2Enabled[]; |
67 extern const wchar_t kSSL3Enabled[]; | 69 extern const wchar_t kSSL3Enabled[]; |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 extern const wchar_t kProxyAutoDetect[]; | 341 extern const wchar_t kProxyAutoDetect[]; |
340 extern const wchar_t kProxyServer[]; | 342 extern const wchar_t kProxyServer[]; |
341 extern const wchar_t kProxyPacUrl[]; | 343 extern const wchar_t kProxyPacUrl[]; |
342 extern const wchar_t kProxyBypassList[]; | 344 extern const wchar_t kProxyBypassList[]; |
343 | 345 |
344 extern const wchar_t kRegisteredBackgroundContents[]; | 346 extern const wchar_t kRegisteredBackgroundContents[]; |
345 | 347 |
346 } // namespace prefs | 348 } // namespace prefs |
347 | 349 |
348 #endif // CHROME_COMMON_PREF_NAMES_H_ | 350 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |