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 #include "chrome/browser/search_engines/template_url_keys.h" |
| 6 |
| 7 namespace default_search { |
| 8 |
| 9 const char kID[] = "id"; |
| 10 const char kShortName[] = "short_name"; |
| 11 const char kKeyword[] = "keyword"; |
| 12 const char kPrepopulateID[] = "prepopulate_id"; |
| 13 const char kSyncGUID[] = "synced_guid"; |
| 14 |
| 15 const char kURL[] = "url"; |
| 16 const char kSuggestionsURL[] = "suggestions_url"; |
| 17 const char kInstantURL[] = "instant_url"; |
| 18 const char kImageURL[] = "image_url"; |
| 19 const char kNewTabURL[] = "new_tab_url"; |
| 20 const char kFaviconURL[] = "favicon_url"; |
| 21 const char kOriginatingURL[] = "originating_url"; |
| 22 |
| 23 const char kSearchURLPostParams[] = "search_url_post_params"; |
| 24 const char kSuggestionsURLPostParams[] = "suggestions_url_post_params"; |
| 25 const char kInstantURLPostParams[] = "instant_url_post_params"; |
| 26 const char kImageURLPostParams[] = "image_url_post_params"; |
| 27 |
| 28 const char kSafeForAutoReplace[] = "safe_for_autoreplace"; |
| 29 const char kInputEncodings[] = "input_encodings"; |
| 30 |
| 31 const char kDateCreated[] = "date_created"; |
| 32 const char kLastModified[] = "last_modified"; |
| 33 |
| 34 const char kUsageCount[] = "usage_count"; |
| 35 const char kAlternateURLs[] = "alternate_urls"; |
| 36 const char kSearchTermsReplacementKey[] = "search_terms_replacement_key"; |
| 37 const char kCreatedByPolicy[] = "created_by_policy"; |
| 38 |
| 39 } // namespace default_search |
OLD | NEW |