| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 #if defined(OS_LINUX) | 65 #if defined(OS_LINUX) |
| 66 extern const wchar_t kCertRevocationCheckingEnabled[]; | 66 extern const wchar_t kCertRevocationCheckingEnabled[]; |
| 67 extern const wchar_t kSSL2Enabled[]; | 67 extern const wchar_t kSSL2Enabled[]; |
| 68 extern const wchar_t kSSL3Enabled[]; | 68 extern const wchar_t kSSL3Enabled[]; |
| 69 extern const wchar_t kTLS1Enabled[]; | 69 extern const wchar_t kTLS1Enabled[]; |
| 70 #endif | 70 #endif |
| 71 #if defined(OS_CHROMEOS) | 71 #if defined(OS_CHROMEOS) |
| 72 extern const wchar_t kTapToClickEnabled[]; | 72 extern const wchar_t kTapToClickEnabled[]; |
| 73 extern const wchar_t kVertEdgeScrollEnabled[]; | 73 extern const wchar_t kVertEdgeScrollEnabled[]; |
| 74 extern const wchar_t kTouchpadSpeedFactor[]; | 74 extern const wchar_t kTouchpadSpeedFactor[]; |
| 75 extern const wchar_t kTouchpadSensitivity[]; |
| 75 #endif | 76 #endif |
| 76 extern const wchar_t kIpcDisabledMessages[]; | 77 extern const wchar_t kIpcDisabledMessages[]; |
| 77 extern const wchar_t kShowHomeButton[]; | 78 extern const wchar_t kShowHomeButton[]; |
| 78 extern const wchar_t kShowPageOptionsButtons[]; | 79 extern const wchar_t kShowPageOptionsButtons[]; |
| 79 extern const wchar_t kRecentlySelectedEncoding[]; | 80 extern const wchar_t kRecentlySelectedEncoding[]; |
| 80 extern const wchar_t kDeleteBrowsingHistory[]; | 81 extern const wchar_t kDeleteBrowsingHistory[]; |
| 81 extern const wchar_t kDeleteDownloadHistory[]; | 82 extern const wchar_t kDeleteDownloadHistory[]; |
| 82 extern const wchar_t kDeleteCache[]; | 83 extern const wchar_t kDeleteCache[]; |
| 83 extern const wchar_t kDeleteCookies[]; | 84 extern const wchar_t kDeleteCookies[]; |
| 84 extern const wchar_t kDeletePasswords[]; | 85 extern const wchar_t kDeletePasswords[]; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 extern const wchar_t kNTPShownSections[]; | 218 extern const wchar_t kNTPShownSections[]; |
| 218 | 219 |
| 219 extern const wchar_t kDevToolsOpenDocked[]; | 220 extern const wchar_t kDevToolsOpenDocked[]; |
| 220 extern const wchar_t kDevToolsSplitLocation[]; | 221 extern const wchar_t kDevToolsSplitLocation[]; |
| 221 | 222 |
| 222 extern const wchar_t kSyncLastSyncedTime[]; | 223 extern const wchar_t kSyncLastSyncedTime[]; |
| 223 extern const wchar_t kSyncHasSetupCompleted[]; | 224 extern const wchar_t kSyncHasSetupCompleted[]; |
| 224 } | 225 } |
| 225 | 226 |
| 226 #endif // CHROME_COMMON_PREF_NAMES_H_ | 227 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |