Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Constants for the keys of the kDefaultSearchProviderData pref. | |
| 6 | |
| 7 #ifndef CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_KEYS_H_ | |
| 8 #define CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_KEYS_H_ | |
| 9 | |
| 10 namespace default_search { | |
|
Peter Kasting
2014/04/23 20:41:06
Using a namespace for this, especially one that do
Cait (Slow)
2014/04/23 23:26:55
They will be needed to populate the dictionary fro
| |
| 11 | |
| 12 extern const char kID[]; | |
| 13 extern const char kShortName[]; | |
| 14 extern const char kKeyword[]; | |
| 15 extern const char kPrepopulateID[]; | |
| 16 extern const char kSyncGUID[]; | |
| 17 | |
| 18 extern const char kURL[]; | |
| 19 extern const char kSuggestionsURL[]; | |
| 20 extern const char kInstantURL[]; | |
| 21 extern const char kImageURL[]; | |
| 22 extern const char kNewTabURL[]; | |
| 23 extern const char kFaviconURL[]; | |
| 24 extern const char kOriginatingURL[]; | |
| 25 | |
| 26 extern const char kSearchURLPostParams[]; | |
| 27 extern const char kSuggestionsURLPostParams[]; | |
| 28 extern const char kInstantURLPostParams[]; | |
| 29 extern const char kImageURLPostParams[]; | |
| 30 | |
| 31 extern const char kSafeForAutoReplace[]; | |
| 32 extern const char kInputEncodings[]; | |
| 33 | |
| 34 extern const char kDateCreated[]; | |
| 35 extern const char kLastModified[]; | |
| 36 | |
| 37 extern const char kUsageCount[]; | |
| 38 extern const char kAlternateURLs[]; | |
| 39 extern const char kSearchTermsReplacementKey[]; | |
| 40 extern const char kCreatedByPolicy[]; | |
| 41 | |
| 42 } // namespace default_search | |
| 43 | |
| 44 #endif // CHROME_BROWSER_SEARCH_ENGINES_TEMPLATE_URL_KEYS_H_ | |
| OLD | NEW |