Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |