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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
134 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; | 134 extern const char kSafeBrowsingDownloadFeedbackEnabled[]; |
135 extern const char kSafeBrowsingReportingEnabled[]; | 135 extern const char kSafeBrowsingReportingEnabled[]; |
136 extern const char kSafeBrowsingProceedAnywayDisabled[]; | 136 extern const char kSafeBrowsingProceedAnywayDisabled[]; |
137 extern const char kIncognitoModeAvailability[]; | 137 extern const char kIncognitoModeAvailability[]; |
138 extern const char kSearchSuggestEnabled[]; | 138 extern const char kSearchSuggestEnabled[]; |
139 #if defined(OS_ANDROID) | 139 #if defined(OS_ANDROID) |
140 extern const char kContextualSearchEnabled[]; | 140 extern const char kContextualSearchEnabled[]; |
141 #endif | 141 #endif |
142 extern const char kConfirmToQuitEnabled[]; | 142 extern const char kConfirmToQuitEnabled[]; |
143 extern const char kCookieBehavior[]; // OBSOLETE | 143 extern const char kCookieBehavior[]; // OBSOLETE |
144 extern const char kDefaultSearchProviderData[]; | |
erikwright (departed)
2014/04/23 14:18:01
I would declare and use this exclusively in defaul
Cait (Slow)
2014/04/23 19:10:05
Done.
| |
144 extern const char kSyncedDefaultSearchProviderGUID[]; | 145 extern const char kSyncedDefaultSearchProviderGUID[]; |
145 extern const char kDefaultSearchProviderEnabled[]; | 146 extern const char kDefaultSearchProviderEnabled[]; |
146 extern const char kDefaultSearchProviderSearchURL[]; | 147 extern const char kDefaultSearchProviderSearchURL[]; |
147 extern const char kDefaultSearchProviderSuggestURL[]; | 148 extern const char kDefaultSearchProviderSuggestURL[]; |
148 extern const char kDefaultSearchProviderInstantURL[]; | 149 extern const char kDefaultSearchProviderInstantURL[]; |
149 extern const char kDefaultSearchProviderImageURL[]; | 150 extern const char kDefaultSearchProviderImageURL[]; |
150 extern const char kDefaultSearchProviderNewTabURL[]; | 151 extern const char kDefaultSearchProviderNewTabURL[]; |
151 extern const char kDefaultSearchProviderSearchURLPostParams[]; | 152 extern const char kDefaultSearchProviderSearchURLPostParams[]; |
152 extern const char kDefaultSearchProviderSuggestURLPostParams[]; | 153 extern const char kDefaultSearchProviderSuggestURLPostParams[]; |
153 extern const char kDefaultSearchProviderInstantURLPostParams[]; | 154 extern const char kDefaultSearchProviderInstantURLPostParams[]; |
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
875 | 876 |
876 #if defined(OS_ANDROID) | 877 #if defined(OS_ANDROID) |
877 extern const char kPartnerBookmarkMappings[]; | 878 extern const char kPartnerBookmarkMappings[]; |
878 #endif | 879 #endif |
879 | 880 |
880 extern const char kQuickCheckEnabled[]; | 881 extern const char kQuickCheckEnabled[]; |
881 | 882 |
882 } // namespace prefs | 883 } // namespace prefs |
883 | 884 |
884 #endif // CHROME_COMMON_PREF_NAMES_H_ | 885 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |