| Index: chrome/browser/search_engines/template_url_keys.cc
|
| diff --git a/chrome/browser/search_engines/template_url_keys.cc b/chrome/browser/search_engines/template_url_keys.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b083e3a6955ddd4b5b0ea6a4e273bcce4842b423
|
| --- /dev/null
|
| +++ b/chrome/browser/search_engines/template_url_keys.cc
|
| @@ -0,0 +1,39 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/browser/search_engines/template_url_keys.h"
|
| +
|
| +namespace default_search {
|
| +
|
| +const char kID[] = "id";
|
| +const char kShortName[] = "short_name";
|
| +const char kKeyword[] = "keyword";
|
| +const char kPrepopulateID[] = "prepopulate_id";
|
| +const char kSyncGUID[] = "synced_guid";
|
| +
|
| +const char kURL[] = "url";
|
| +const char kSuggestionsURL[] = "suggestions_url";
|
| +const char kInstantURL[] = "instant_url";
|
| +const char kImageURL[] = "image_url";
|
| +const char kNewTabURL[] = "new_tab_url";
|
| +const char kFaviconURL[] = "favicon_url";
|
| +const char kOriginatingURL[] = "originating_url";
|
| +
|
| +const char kSearchURLPostParams[] = "search_url_post_params";
|
| +const char kSuggestionsURLPostParams[] = "suggestions_url_post_params";
|
| +const char kInstantURLPostParams[] = "instant_url_post_params";
|
| +const char kImageURLPostParams[] = "image_url_post_params";
|
| +
|
| +const char kSafeForAutoReplace[] = "safe_for_autoreplace";
|
| +const char kInputEncodings[] = "input_encodings";
|
| +
|
| +const char kDateCreated[] = "date_created";
|
| +const char kLastModified[] = "last_modified";
|
| +
|
| +const char kUsageCount[] = "usage_count";
|
| +const char kAlternateURLs[] = "alternate_urls";
|
| +const char kSearchTermsReplacementKey[] = "search_terms_replacement_key";
|
| +const char kCreatedByPolicy[] = "created_by_policy";
|
| +
|
| +} // namespace default_search
|
|
|