| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 extern const char kWebKitFontScaleFactor[]; | 131 extern const char kWebKitFontScaleFactor[]; |
| 132 extern const char kWebKitForceEnableZoom[]; | 132 extern const char kWebKitForceEnableZoom[]; |
| 133 extern const char kWebKitPasswordEchoEnabled[]; | 133 extern const char kWebKitPasswordEchoEnabled[]; |
| 134 #endif | 134 #endif |
| 135 extern const char kPasswordManagerEnabled[]; | 135 extern const char kPasswordManagerEnabled[]; |
| 136 extern const char kPasswordManagerAllowShowPasswords[]; | 136 extern const char kPasswordManagerAllowShowPasswords[]; |
| 137 extern const char kAutologinEnabled[]; | 137 extern const char kAutologinEnabled[]; |
| 138 extern const char kReverseAutologinEnabled[]; | 138 extern const char kReverseAutologinEnabled[]; |
| 139 extern const char kReverseAutologinRejectedEmailList[]; | 139 extern const char kReverseAutologinRejectedEmailList[]; |
| 140 extern const char kSafeBrowsingEnabled[]; | 140 extern const char kSafeBrowsingEnabled[]; |
| 141 extern const char kSafeBrowsingDownloadReportingEnabled[]; | 141 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; |
| 142 extern const char kSafeBrowsingReportingEnabled[]; | 142 extern const char kSafeBrowsingReportingEnabled[]; |
| 143 extern const char kSafeBrowsingProceedAnywayDisabled[]; | 143 extern const char kSafeBrowsingProceedAnywayDisabled[]; |
| 144 extern const char kIncognitoModeAvailability[]; | 144 extern const char kIncognitoModeAvailability[]; |
| 145 extern const char kSearchSuggestEnabled[]; | 145 extern const char kSearchSuggestEnabled[]; |
| 146 #if defined(OS_ANDROID) | 146 #if defined(OS_ANDROID) |
| 147 extern const char kContextualSearchEnabled[]; | 147 extern const char kContextualSearchEnabled[]; |
| 148 #endif | 148 #endif |
| 149 extern const char kConfirmToQuitEnabled[]; | 149 extern const char kConfirmToQuitEnabled[]; |
| 150 extern const char kCookieBehavior[]; // OBSOLETE | 150 extern const char kCookieBehavior[]; // OBSOLETE |
| 151 extern const char kSyncedDefaultSearchProviderGUID[]; | 151 extern const char kSyncedDefaultSearchProviderGUID[]; |
| (...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 #if defined(OS_WIN) | 954 #if defined(OS_WIN) |
| 955 extern const char kOsPasswordBlank[]; | 955 extern const char kOsPasswordBlank[]; |
| 956 extern const char kOsPasswordLastChanged[]; | 956 extern const char kOsPasswordLastChanged[]; |
| 957 #endif | 957 #endif |
| 958 | 958 |
| 959 extern const char kQuickCheckEnabled[]; | 959 extern const char kQuickCheckEnabled[]; |
| 960 | 960 |
| 961 } // namespace prefs | 961 } // namespace prefs |
| 962 | 962 |
| 963 #endif // CHROME_COMMON_PREF_NAMES_H_ | 963 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |