| 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 kSafeBrowsingEnabled[]; | 135 extern const char kSafeBrowsingEnabled[]; |
| 136 extern const char kSafeBrowsingExtendedReportingEnabled[]; | 136 extern const char kSafeBrowsingExtendedReportingEnabled[]; |
| 137 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; | 137 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; |
| 138 extern const char kSafeBrowsingReportingEnabled[]; | 138 extern const char kSafeBrowsingReportingEnabled[]; |
| 139 extern const char kSafeBrowsingProceedAnywayDisabled[]; | 139 extern const char kSafeBrowsingProceedAnywayDisabled[]; |
| 140 extern const char kSafeBrowsingIncidentReportSent[]; | 140 extern const char kSafeBrowsingIncidentReportSent[]; |
| 141 extern const char kSafeBrowsingIncidentsSent[]; |
| 141 extern const char kIncognitoModeAvailability[]; | 142 extern const char kIncognitoModeAvailability[]; |
| 142 extern const char kSearchSuggestEnabled[]; | 143 extern const char kSearchSuggestEnabled[]; |
| 143 #if defined(OS_ANDROID) | 144 #if defined(OS_ANDROID) |
| 144 extern const char kContextualSearchEnabled[]; | 145 extern const char kContextualSearchEnabled[]; |
| 145 #endif | 146 #endif |
| 146 extern const char kConfirmToQuitEnabled[]; | 147 extern const char kConfirmToQuitEnabled[]; |
| 147 extern const char kCookieBehavior[]; // OBSOLETE | 148 extern const char kCookieBehavior[]; // OBSOLETE |
| 148 extern const char kPromptForDownload[]; | 149 extern const char kPromptForDownload[]; |
| 149 extern const char kAlternateErrorPagesEnabled[]; | 150 extern const char kAlternateErrorPagesEnabled[]; |
| 150 extern const char kDnsStartupPrefetchList[]; // OBSOLETE | 151 extern const char kDnsStartupPrefetchList[]; // OBSOLETE |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 | 811 |
| 811 #if defined(OS_ANDROID) | 812 #if defined(OS_ANDROID) |
| 812 extern const char kPartnerBookmarkMappings[]; | 813 extern const char kPartnerBookmarkMappings[]; |
| 813 #endif | 814 #endif |
| 814 | 815 |
| 815 extern const char kQuickCheckEnabled[]; | 816 extern const char kQuickCheckEnabled[]; |
| 816 | 817 |
| 817 } // namespace prefs | 818 } // namespace prefs |
| 818 | 819 |
| 819 #endif // CHROME_COMMON_PREF_NAMES_H_ | 820 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |