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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 extern const char kWebkitTabsToLinks[]; | 132 extern const char kWebkitTabsToLinks[]; |
133 extern const char kWebKitAllowDisplayingInsecureContent[]; | 133 extern const char kWebKitAllowDisplayingInsecureContent[]; |
134 extern const char kWebKitAllowRunningInsecureContent[]; | 134 extern const char kWebKitAllowRunningInsecureContent[]; |
135 #if defined(OS_ANDROID) | 135 #if defined(OS_ANDROID) |
136 extern const char kWebKitFontScaleFactor[]; | 136 extern const char kWebKitFontScaleFactor[]; |
137 extern const char kWebKitForceEnableZoom[]; | 137 extern const char kWebKitForceEnableZoom[]; |
138 extern const char kWebKitPasswordEchoEnabled[]; | 138 extern const char kWebKitPasswordEchoEnabled[]; |
139 #endif | 139 #endif |
140 extern const char kSafeBrowsingEnabled[]; | 140 extern const char kSafeBrowsingEnabled[]; |
141 extern const char kSafeBrowsingExtendedReportingEnabled[]; | 141 extern const char kSafeBrowsingExtendedReportingEnabled[]; |
142 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; | |
143 extern const char kSafeBrowsingReportingEnabled[]; | |
144 extern const char kSafeBrowsingProceedAnywayDisabled[]; | 142 extern const char kSafeBrowsingProceedAnywayDisabled[]; |
145 extern const char kSafeBrowsingIncidentReportSent[]; | 143 extern const char kSafeBrowsingIncidentReportSent[]; |
146 extern const char kSafeBrowsingIncidentsSent[]; | 144 extern const char kSafeBrowsingIncidentsSent[]; |
147 extern const char kIncognitoModeAvailability[]; | 145 extern const char kIncognitoModeAvailability[]; |
148 extern const char kSearchSuggestEnabled[]; | 146 extern const char kSearchSuggestEnabled[]; |
149 #if defined(OS_ANDROID) | 147 #if defined(OS_ANDROID) |
150 extern const char kContextualSearchEnabled[]; | 148 extern const char kContextualSearchEnabled[]; |
151 #endif | 149 #endif |
152 extern const char kConfirmToQuitEnabled[]; | 150 extern const char kConfirmToQuitEnabled[]; |
153 extern const char kCookieBehavior[]; // OBSOLETE | 151 extern const char kCookieBehavior[]; // OBSOLETE |
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
818 #if defined(OS_ANDROID) | 816 #if defined(OS_ANDROID) |
819 extern const char kPartnerBookmarkMappings[]; | 817 extern const char kPartnerBookmarkMappings[]; |
820 #endif | 818 #endif |
821 | 819 |
822 extern const char kQuickCheckEnabled[]; | 820 extern const char kQuickCheckEnabled[]; |
823 extern const char kBrowserGuestModeEnabled[]; | 821 extern const char kBrowserGuestModeEnabled[]; |
824 | 822 |
825 } // namespace prefs | 823 } // namespace prefs |
826 | 824 |
827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 825 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |