Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: chrome/browser/search_engines/template_url_keys.cc

Issue 229763005: Store default search provider data in dictionary pref. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Eriks comments and clean up Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698