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

Side by Side Diff: chrome/browser/search_engines/prepopulated_engines.json

Issue 11377049: Moving prepopulated search engines to a JSON file. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // This file is used by json_to_struct.py to generate prepopulated_engined.h/cc.
Peter Kasting 2012/11/08 19:02:25 Typo
beaudoin 2012/11/09 04:16:53 Done.
6
7 // Engine definitions. See prepopulated_engines_schema.json for the field
8 // definitions.
9
10 {
11 "abcsokk": {
12 "name": "ABC S\u00f8k",
13 "keyword": "abcsok.no",
14 "favicon_url": "http://abcsok.no/favicon.ico",
15 "search_url": "http://abcsok.no/index.html?q={searchTerms}",
16 "encoding": "UTF-8",
Peter Kasting 2012/11/08 19:02:25 Let's make this field default to UTF-8 since that'
beaudoin 2012/11/09 04:16:53 Done.
17 "type": "SEARCH_ENGINE_ABCSOK",
18 "id": 72
19 },
20
21 "altavista": {
22 "name": "AltaVista",
23 "keyword": "altavista.com",
24 "favicon_url": "http://www.altavista.com/favicon.ico",
25 "search_url": "http://www.altavista.com/web/results?q={searchTerms}",
26 "encoding": "UTF-8",
27 "type": "SEARCH_ENGINE_ALTAVISTA",
28 "id": 89
29 }
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698