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 // GENERATED FROM THE SCHEMA DEFINITION AND CONTENT IN |
| 6 // chrome/browser/search_engines/prepopulated_engines_schema.json |
| 7 // chrome/browser/search_engines/prepopulated_engines.json |
| 8 // DO NOT EDIT. |
| 9 |
| 10 #include <stdio.h> |
| 11 |
| 12 #include "chrome/browser/search_engines/prepopulated_engines.h" |
| 13 |
| 14 namespace search_engines { |
| 15 |
| 16 const PrepopulatedEngine altavista = { |
| 17 L"AltaVista", |
| 18 L"altavista.com", |
| 19 "http://www.altavista.com/favicon.ico", |
| 20 "http://www.altavista.com/web/results?q={searchTerms}", |
| 21 "UTF-8", |
| 22 NULL, |
| 23 NULL, |
| 24 NULL, |
| 25 SEARCH_ENGINE_ALTAVISTA, |
| 26 89, |
| 27 }; |
| 28 |
| 29 const PrepopulatedEngine abcsokk = { |
| 30 L"ABC S\x00f8k", |
| 31 L"abcsok.no", |
| 32 "http://abcsok.no/favicon.ico", |
| 33 "http://abcsok.no/index.html?q={searchTerms}", |
| 34 "UTF-8", |
| 35 NULL, |
| 36 NULL, |
| 37 NULL, |
| 38 SEARCH_ENGINE_ABCSOK, |
| 39 72, |
| 40 }; |
| 41 |
| 42 } // namespace search_engines |
OLD | NEW |