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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 #if defined(OS_ANDROID) | 129 #if defined(OS_ANDROID) |
130 extern const char kWebKitFontScaleFactor[]; | 130 extern const char kWebKitFontScaleFactor[]; |
131 extern const char kWebKitForceEnableZoom[]; | 131 extern const char kWebKitForceEnableZoom[]; |
132 extern const char kWebKitPasswordEchoEnabled[]; | 132 extern const char kWebKitPasswordEchoEnabled[]; |
133 #endif | 133 #endif |
134 extern const char kSafeBrowsingEnabled[]; | 134 extern const char kSafeBrowsingEnabled[]; |
135 extern const char kSafeBrowsingExtendedReportingEnabled[]; | 135 extern const char kSafeBrowsingExtendedReportingEnabled[]; |
136 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; | 136 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; |
137 extern const char kSafeBrowsingReportingEnabled[]; | 137 extern const char kSafeBrowsingReportingEnabled[]; |
138 extern const char kSafeBrowsingProceedAnywayDisabled[]; | 138 extern const char kSafeBrowsingProceedAnywayDisabled[]; |
| 139 extern const char kSafeBrowsingIncidentReportSent[]; |
139 extern const char kIncognitoModeAvailability[]; | 140 extern const char kIncognitoModeAvailability[]; |
140 extern const char kSearchSuggestEnabled[]; | 141 extern const char kSearchSuggestEnabled[]; |
141 #if defined(OS_ANDROID) | 142 #if defined(OS_ANDROID) |
142 extern const char kContextualSearchEnabled[]; | 143 extern const char kContextualSearchEnabled[]; |
143 #endif | 144 #endif |
144 extern const char kConfirmToQuitEnabled[]; | 145 extern const char kConfirmToQuitEnabled[]; |
145 extern const char kCookieBehavior[]; // OBSOLETE | 146 extern const char kCookieBehavior[]; // OBSOLETE |
146 extern const char kSyncedDefaultSearchProviderGUID[]; | 147 extern const char kSyncedDefaultSearchProviderGUID[]; |
147 extern const char kDefaultSearchProviderEnabled[]; | 148 extern const char kDefaultSearchProviderEnabled[]; |
148 extern const char kDefaultSearchProviderSearchURL[]; | 149 extern const char kDefaultSearchProviderSearchURL[]; |
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 | 832 |
832 #if defined(OS_ANDROID) | 833 #if defined(OS_ANDROID) |
833 extern const char kPartnerBookmarkMappings[]; | 834 extern const char kPartnerBookmarkMappings[]; |
834 #endif | 835 #endif |
835 | 836 |
836 extern const char kQuickCheckEnabled[]; | 837 extern const char kQuickCheckEnabled[]; |
837 | 838 |
838 } // namespace prefs | 839 } // namespace prefs |
839 | 840 |
840 #endif // CHROME_COMMON_PREF_NAMES_H_ | 841 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |