OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 extern const wchar_t kAlternateErrorPagesEnabled[]; | 64 extern const wchar_t kAlternateErrorPagesEnabled[]; |
65 extern const wchar_t kDnsPrefetchingEnabled[]; | 65 extern const wchar_t kDnsPrefetchingEnabled[]; |
66 extern const wchar_t kDnsStartupPrefetchList[]; | 66 extern const wchar_t kDnsStartupPrefetchList[]; |
67 extern const wchar_t kDnsHostReferralList[]; | 67 extern const wchar_t kDnsHostReferralList[]; |
68 #if defined(OS_LINUX) | 68 #if defined(OS_LINUX) |
69 extern const wchar_t kCertRevocationCheckingEnabled[]; | 69 extern const wchar_t kCertRevocationCheckingEnabled[]; |
70 extern const wchar_t kSSL2Enabled[]; | 70 extern const wchar_t kSSL2Enabled[]; |
71 extern const wchar_t kSSL3Enabled[]; | 71 extern const wchar_t kSSL3Enabled[]; |
72 extern const wchar_t kTLS1Enabled[]; | 72 extern const wchar_t kTLS1Enabled[]; |
73 #endif | 73 #endif |
| 74 #if defined(OS_CHROMEOS) |
| 75 extern const wchar_t kTapToClickEnabled[]; |
| 76 extern const wchar_t kVertEdgeScrollEnabled[]; |
| 77 #endif |
74 extern const wchar_t kIpcDisabledMessages[]; | 78 extern const wchar_t kIpcDisabledMessages[]; |
75 extern const wchar_t kShowHomeButton[]; | 79 extern const wchar_t kShowHomeButton[]; |
76 extern const wchar_t kShowPageOptionsButtons[]; | 80 extern const wchar_t kShowPageOptionsButtons[]; |
77 extern const wchar_t kRecentlySelectedEncoding[]; | 81 extern const wchar_t kRecentlySelectedEncoding[]; |
78 extern const wchar_t kDeleteBrowsingHistory[]; | 82 extern const wchar_t kDeleteBrowsingHistory[]; |
79 extern const wchar_t kDeleteDownloadHistory[]; | 83 extern const wchar_t kDeleteDownloadHistory[]; |
80 extern const wchar_t kDeleteCache[]; | 84 extern const wchar_t kDeleteCache[]; |
81 extern const wchar_t kDeleteCookies[]; | 85 extern const wchar_t kDeleteCookies[]; |
82 extern const wchar_t kDeletePasswords[]; | 86 extern const wchar_t kDeletePasswords[]; |
83 extern const wchar_t kDeleteFormData[]; | 87 extern const wchar_t kDeleteFormData[]; |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 extern const wchar_t kNTPShownSections[]; | 222 extern const wchar_t kNTPShownSections[]; |
219 | 223 |
220 extern const wchar_t kDevToolsOpenDocked[]; | 224 extern const wchar_t kDevToolsOpenDocked[]; |
221 extern const wchar_t kDevToolsSplitLocation[]; | 225 extern const wchar_t kDevToolsSplitLocation[]; |
222 | 226 |
223 extern const wchar_t kSyncLastSyncedTime[]; | 227 extern const wchar_t kSyncLastSyncedTime[]; |
224 extern const wchar_t kSyncHasSetupCompleted[]; | 228 extern const wchar_t kSyncHasSetupCompleted[]; |
225 } | 229 } |
226 | 230 |
227 #endif // CHROME_COMMON_PREF_NAMES_H_ | 231 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |