Files
cromite/build/patches/Add-StartPage-search-engine.patch
T
2019-03-03 08:25:32 +01:00

1031 lines
25 KiB
Diff

From: csagan5 <32685696+csagan5@users.noreply.github.com>
Date: Wed, 18 Oct 2017 21:24:05 +0200
Subject: Add StartPage search engine
---
.../search_engines/prepopulated_engines.json | 12 +-
components/search_engines/search_engine_type.h | 1 +
.../template_url_prepopulate_data.cc | 218 ++++++++++-----------
3 files changed, 121 insertions(+), 110 deletions(-)
diff --git a/components/search_engines/prepopulated_engines.json b/components/search_engines/prepopulated_engines.json
--- a/components/search_engines/prepopulated_engines.json
+++ b/components/search_engines/prepopulated_engines.json
@@ -28,7 +28,7 @@
// Increment this if you change the data in ways that mean users with
// existing data should get a new version. Otherwise, existing data may
// continue to be used and updates made here will not always appear.
- "kCurrentDataVersion": 110
+ "kCurrentDataVersion": 111
},
// The following engines are included in country lists and are added to the
@@ -206,6 +206,16 @@
"id": 56
},
+ "startpage": {
+ "name": "StartPage",
+ "keyword": "startpage.com",
+ "favicon_url": "https://www.startpage.com/graphics/favicon/sp-favicon-16x16.png",
+ "search_url": "https://www.startpage.com/do/dsearch?query={searchTerms}&cat=web&pl=opensearch",
+ "suggest_url": "https://www.startpage.com/cgi-bin/csuggest?query={searchTerms}&limit=10&format=json",
+ "type": "SEARCH_ENGINE_STARTPAGE",
+ "id": 33
+ },
+
"yahoo": {
"name": "Yahoo!",
"keyword": "yahoo.com",
diff --git a/components/search_engines/search_engine_type.h b/components/search_engines/search_engine_type.h
--- a/components/search_engines/search_engine_type.h
+++ b/components/search_engines/search_engine_type.h
@@ -67,6 +67,7 @@ enum SearchEngineType {
SEARCH_ENGINE_DUCKDUCKGO,
SEARCH_ENGINE_PARSIJOO,
SEARCH_ENGINE_QWANT,
+ SEARCH_ENGINE_STARTPAGE,
SEARCH_ENGINE_MAX // Bounding value needed for UMA histogram macro.
};
diff --git a/components/search_engines/template_url_prepopulate_data.cc b/components/search_engines/template_url_prepopulate_data.cc
--- a/components/search_engines/template_url_prepopulate_data.cc
+++ b/components/search_engines/template_url_prepopulate_data.cc
@@ -32,7 +32,7 @@ namespace {
// Default (for countries with no better engine set)
const PrepopulatedEngine* const engines_default[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
};
@@ -41,7 +41,7 @@ const PrepopulatedEngine* const engines_default[] = {
// Engine selection by country ------------------------------------------------
// United Arab Emirates
const PrepopulatedEngine* const engines_AE[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -49,7 +49,7 @@ const PrepopulatedEngine* const engines_AE[] = {
// Albania
const PrepopulatedEngine* const engines_AL[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&ask,
@@ -57,7 +57,7 @@ const PrepopulatedEngine* const engines_AL[] = {
// Argentina
const PrepopulatedEngine* const engines_AR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_ar,
&duckduckgo,
@@ -65,7 +65,7 @@ const PrepopulatedEngine* const engines_AR[] = {
// Austria
const PrepopulatedEngine* const engines_AT[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_at,
&duckduckgo,
@@ -73,7 +73,7 @@ const PrepopulatedEngine* const engines_AT[] = {
// Australia
const PrepopulatedEngine* const engines_AU[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_au,
&duckduckgo,
@@ -81,7 +81,7 @@ const PrepopulatedEngine* const engines_AU[] = {
// Bosnia and Herzegovina
const PrepopulatedEngine* const engines_BA[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&ask,
@@ -89,7 +89,7 @@ const PrepopulatedEngine* const engines_BA[] = {
// Belgium
const PrepopulatedEngine* const engines_BE[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -97,7 +97,7 @@ const PrepopulatedEngine* const engines_BE[] = {
// Bulgaria
const PrepopulatedEngine* const engines_BG[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_ru,
@@ -105,7 +105,7 @@ const PrepopulatedEngine* const engines_BG[] = {
// Bahrain
const PrepopulatedEngine* const engines_BH[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&ask,
@@ -113,7 +113,7 @@ const PrepopulatedEngine* const engines_BH[] = {
// Burundi
const PrepopulatedEngine* const engines_BI[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_ru,
@@ -121,7 +121,7 @@ const PrepopulatedEngine* const engines_BI[] = {
// Brunei
const PrepopulatedEngine* const engines_BN[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -129,7 +129,7 @@ const PrepopulatedEngine* const engines_BN[] = {
// Bolivia
const PrepopulatedEngine* const engines_BO[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -137,7 +137,7 @@ const PrepopulatedEngine* const engines_BO[] = {
// Brazil
const PrepopulatedEngine* const engines_BR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_br,
&duckduckgo,
@@ -145,7 +145,7 @@ const PrepopulatedEngine* const engines_BR[] = {
// Belarus
const PrepopulatedEngine* const engines_BY[] = {
- &google,
+ &google, &startpage,
&yandex_by,
&mail_ru,
&bing,
@@ -153,7 +153,7 @@ const PrepopulatedEngine* const engines_BY[] = {
// Belize
const PrepopulatedEngine* const engines_BZ[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -161,12 +161,12 @@ const PrepopulatedEngine* const engines_BZ[] = {
// Canada
const PrepopulatedEngine* const engines_CA[] = {
- &google, &bing, &yahoo_ca, &yahoo_qc, &duckduckgo,
+ &google, &startpage, &bing, &yahoo_ca, &yahoo_qc, &duckduckgo,
};
// Switzerland
const PrepopulatedEngine* const engines_CH[] = {
- &google,
+ &google, &startpage,
&bing,
&duckduckgo,
&yahoo_ch,
@@ -174,7 +174,7 @@ const PrepopulatedEngine* const engines_CH[] = {
// Chile
const PrepopulatedEngine* const engines_CL[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_cl,
&duckduckgo,
@@ -182,12 +182,12 @@ const PrepopulatedEngine* const engines_CL[] = {
// China
const PrepopulatedEngine* const engines_CN[] = {
- &baidu, &so_360, &google, &sogou, &bing,
+ &baidu, &so_360, &google, &startpage, &sogou, &bing,
};
// Colombia
const PrepopulatedEngine* const engines_CO[] = {
- &google,
+ &google, &startpage,
&yahoo_co,
&bing,
&duckduckgo,
@@ -195,7 +195,7 @@ const PrepopulatedEngine* const engines_CO[] = {
// Costa Rica
const PrepopulatedEngine* const engines_CR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -203,7 +203,7 @@ const PrepopulatedEngine* const engines_CR[] = {
// Czech Republic
const PrepopulatedEngine* const engines_CZ[] = {
- &google,
+ &google, &startpage,
&seznam,
&bing,
&yahoo,
@@ -211,7 +211,7 @@ const PrepopulatedEngine* const engines_CZ[] = {
// Germany
const PrepopulatedEngine* const engines_DE[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_de,
&duckduckgo,
@@ -219,7 +219,7 @@ const PrepopulatedEngine* const engines_DE[] = {
// Denmark
const PrepopulatedEngine* const engines_DK[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_dk,
&duckduckgo,
@@ -227,7 +227,7 @@ const PrepopulatedEngine* const engines_DK[] = {
// Dominican Republic
const PrepopulatedEngine* const engines_DO[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -235,7 +235,7 @@ const PrepopulatedEngine* const engines_DO[] = {
// Algeria
const PrepopulatedEngine* const engines_DZ[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_ru,
@@ -243,7 +243,7 @@ const PrepopulatedEngine* const engines_DZ[] = {
// Ecuador
const PrepopulatedEngine* const engines_EC[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -251,7 +251,7 @@ const PrepopulatedEngine* const engines_EC[] = {
// Estonia
const PrepopulatedEngine* const engines_EE[] = {
- &google,
+ &google, &startpage,
&bing,
&yandex_ru,
&neti,
@@ -259,7 +259,7 @@ const PrepopulatedEngine* const engines_EE[] = {
// Egypt
const PrepopulatedEngine* const engines_EG[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_ru,
@@ -267,7 +267,7 @@ const PrepopulatedEngine* const engines_EG[] = {
// Spain
const PrepopulatedEngine* const engines_ES[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_es,
&duckduckgo,
@@ -275,7 +275,7 @@ const PrepopulatedEngine* const engines_ES[] = {
// Finland
const PrepopulatedEngine* const engines_FI[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_fi,
&duckduckgo,
@@ -283,7 +283,7 @@ const PrepopulatedEngine* const engines_FI[] = {
// Faroe Islands
const PrepopulatedEngine* const engines_FO[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -291,7 +291,7 @@ const PrepopulatedEngine* const engines_FO[] = {
// France
const PrepopulatedEngine* const engines_FR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_fr,
&qwant,
@@ -299,7 +299,7 @@ const PrepopulatedEngine* const engines_FR[] = {
// United Kingdom
const PrepopulatedEngine* const engines_GB[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_uk,
&duckduckgo,
@@ -307,7 +307,7 @@ const PrepopulatedEngine* const engines_GB[] = {
// Greece
const PrepopulatedEngine* const engines_GR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -315,7 +315,7 @@ const PrepopulatedEngine* const engines_GR[] = {
// Guatemala
const PrepopulatedEngine* const engines_GT[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -323,7 +323,7 @@ const PrepopulatedEngine* const engines_GT[] = {
// Hong Kong
const PrepopulatedEngine* const engines_HK[] = {
- &google,
+ &google, &startpage,
&yahoo_hk,
&bing,
&baidu,
@@ -331,7 +331,7 @@ const PrepopulatedEngine* const engines_HK[] = {
// Honduras
const PrepopulatedEngine* const engines_HN[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -339,7 +339,7 @@ const PrepopulatedEngine* const engines_HN[] = {
// Croatia
const PrepopulatedEngine* const engines_HR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -347,7 +347,7 @@ const PrepopulatedEngine* const engines_HR[] = {
// Hungary
const PrepopulatedEngine* const engines_HU[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&duckduckgo,
@@ -355,7 +355,7 @@ const PrepopulatedEngine* const engines_HU[] = {
// Indonesia
const PrepopulatedEngine* const engines_ID[] = {
- &google,
+ &google, &startpage,
&yahoo_id,
&bing,
&duckduckgo,
@@ -363,7 +363,7 @@ const PrepopulatedEngine* const engines_ID[] = {
// Ireland
const PrepopulatedEngine* const engines_IE[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -371,7 +371,7 @@ const PrepopulatedEngine* const engines_IE[] = {
// Israel
const PrepopulatedEngine* const engines_IL[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_ru,
@@ -379,7 +379,7 @@ const PrepopulatedEngine* const engines_IL[] = {
// India
const PrepopulatedEngine* const engines_IN[] = {
- &google,
+ &google, &startpage,
&yahoo_in,
&bing,
&duckduckgo,
@@ -387,7 +387,7 @@ const PrepopulatedEngine* const engines_IN[] = {
// Iraq
const PrepopulatedEngine* const engines_IQ[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_ru,
@@ -395,7 +395,7 @@ const PrepopulatedEngine* const engines_IQ[] = {
// Iran
const PrepopulatedEngine* const engines_IR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&parsijoo,
@@ -403,7 +403,7 @@ const PrepopulatedEngine* const engines_IR[] = {
// Iceland
const PrepopulatedEngine* const engines_IS[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -411,7 +411,7 @@ const PrepopulatedEngine* const engines_IS[] = {
// Italy
const PrepopulatedEngine* const engines_IT[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -419,7 +419,7 @@ const PrepopulatedEngine* const engines_IT[] = {
// Jamaica
const PrepopulatedEngine* const engines_JM[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -427,7 +427,7 @@ const PrepopulatedEngine* const engines_JM[] = {
// Jordan
const PrepopulatedEngine* const engines_JO[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_ru,
@@ -435,7 +435,7 @@ const PrepopulatedEngine* const engines_JO[] = {
// Japan
const PrepopulatedEngine* const engines_JP[] = {
- &google,
+ &google, &startpage,
&yahoo_jp,
&bing,
&baidu,
@@ -443,7 +443,7 @@ const PrepopulatedEngine* const engines_JP[] = {
// Kenya
const PrepopulatedEngine* const engines_KE[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&duckduckgo,
@@ -451,7 +451,7 @@ const PrepopulatedEngine* const engines_KE[] = {
// South Korea
const PrepopulatedEngine* const engines_KR[] = {
- &google,
+ &google, &startpage,
&naver,
&daum,
&bing,
@@ -459,7 +459,7 @@ const PrepopulatedEngine* const engines_KR[] = {
// Kuwait
const PrepopulatedEngine* const engines_KW[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&ask,
@@ -467,7 +467,7 @@ const PrepopulatedEngine* const engines_KW[] = {
// Kazakhstan
const PrepopulatedEngine* const engines_KZ[] = {
- &google,
+ &google, &startpage,
&yandex_kz,
&mail_ru,
&bing,
@@ -475,7 +475,7 @@ const PrepopulatedEngine* const engines_KZ[] = {
// Lebanon
const PrepopulatedEngine* const engines_LB[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -483,7 +483,7 @@ const PrepopulatedEngine* const engines_LB[] = {
// Liechtenstein
const PrepopulatedEngine* const engines_LI[] = {
- &google,
+ &google, &startpage,
&bing,
&duckduckgo,
&yahoo,
@@ -491,7 +491,7 @@ const PrepopulatedEngine* const engines_LI[] = {
// Lithuania
const PrepopulatedEngine* const engines_LT[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_ru,
@@ -499,7 +499,7 @@ const PrepopulatedEngine* const engines_LT[] = {
// Luxembourg
const PrepopulatedEngine* const engines_LU[] = {
- &google,
+ &google, &startpage,
&bing,
&duckduckgo,
&yahoo,
@@ -507,7 +507,7 @@ const PrepopulatedEngine* const engines_LU[] = {
// Latvia
const PrepopulatedEngine* const engines_LV[] = {
- &google,
+ &google, &startpage,
&bing,
&yandex_ru,
&yahoo,
@@ -515,7 +515,7 @@ const PrepopulatedEngine* const engines_LV[] = {
// Libya
const PrepopulatedEngine* const engines_LY[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_com,
@@ -523,7 +523,7 @@ const PrepopulatedEngine* const engines_LY[] = {
// Morocco
const PrepopulatedEngine* const engines_MA[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_ru,
@@ -531,7 +531,7 @@ const PrepopulatedEngine* const engines_MA[] = {
// Monaco
const PrepopulatedEngine* const engines_MC[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -539,7 +539,7 @@ const PrepopulatedEngine* const engines_MC[] = {
// Moldova
const PrepopulatedEngine* const engines_MD[] = {
- &google,
+ &google, &startpage,
&yandex_ru,
&mail_ru,
&duckduckgo,
@@ -547,7 +547,7 @@ const PrepopulatedEngine* const engines_MD[] = {
// Montenegro
const PrepopulatedEngine* const engines_ME[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_ru,
@@ -555,7 +555,7 @@ const PrepopulatedEngine* const engines_ME[] = {
// Macedonia
const PrepopulatedEngine* const engines_MK[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&duckduckgo,
@@ -563,7 +563,7 @@ const PrepopulatedEngine* const engines_MK[] = {
// Mexico
const PrepopulatedEngine* const engines_MX[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_mx,
&duckduckgo,
@@ -571,7 +571,7 @@ const PrepopulatedEngine* const engines_MX[] = {
// Malaysia
const PrepopulatedEngine* const engines_MY[] = {
- &google,
+ &google, &startpage,
&yahoo_my,
&bing,
&baidu,
@@ -579,7 +579,7 @@ const PrepopulatedEngine* const engines_MY[] = {
// Nicaragua
const PrepopulatedEngine* const engines_NI[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -587,7 +587,7 @@ const PrepopulatedEngine* const engines_NI[] = {
// Netherlands
const PrepopulatedEngine* const engines_NL[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_nl,
&duckduckgo,
@@ -595,7 +595,7 @@ const PrepopulatedEngine* const engines_NL[] = {
// Norway
const PrepopulatedEngine* const engines_NO[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -603,7 +603,7 @@ const PrepopulatedEngine* const engines_NO[] = {
// New Zealand
const PrepopulatedEngine* const engines_NZ[] = {
- &google,
+ &google, &startpage,
&bing,
&duckduckgo,
&yahoo_nz,
@@ -611,7 +611,7 @@ const PrepopulatedEngine* const engines_NZ[] = {
// Oman
const PrepopulatedEngine* const engines_OM[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&ask,
@@ -619,7 +619,7 @@ const PrepopulatedEngine* const engines_OM[] = {
// Panama
const PrepopulatedEngine* const engines_PA[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -627,7 +627,7 @@ const PrepopulatedEngine* const engines_PA[] = {
// Peru
const PrepopulatedEngine* const engines_PE[] = {
- &google,
+ &google, &startpage,
&yahoo_pe,
&bing,
&duckduckgo,
@@ -635,7 +635,7 @@ const PrepopulatedEngine* const engines_PE[] = {
// Philippines
const PrepopulatedEngine* const engines_PH[] = {
- &google,
+ &google, &startpage,
&yahoo_ph,
&bing,
&duckduckgo,
@@ -643,7 +643,7 @@ const PrepopulatedEngine* const engines_PH[] = {
// Pakistan
const PrepopulatedEngine* const engines_PK[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&baidu,
@@ -651,7 +651,7 @@ const PrepopulatedEngine* const engines_PK[] = {
// Poland
const PrepopulatedEngine* const engines_PL[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -659,7 +659,7 @@ const PrepopulatedEngine* const engines_PL[] = {
// Puerto Rico
const PrepopulatedEngine* const engines_PR[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -667,7 +667,7 @@ const PrepopulatedEngine* const engines_PR[] = {
// Portugal
const PrepopulatedEngine* const engines_PT[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -675,7 +675,7 @@ const PrepopulatedEngine* const engines_PT[] = {
// Paraguay
const PrepopulatedEngine* const engines_PY[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -683,7 +683,7 @@ const PrepopulatedEngine* const engines_PY[] = {
// Qatar
const PrepopulatedEngine* const engines_QA[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&ask,
@@ -691,7 +691,7 @@ const PrepopulatedEngine* const engines_QA[] = {
// Romania
const PrepopulatedEngine* const engines_RO[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -699,7 +699,7 @@ const PrepopulatedEngine* const engines_RO[] = {
// Serbia
const PrepopulatedEngine* const engines_RS[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&duckduckgo,
@@ -708,14 +708,14 @@ const PrepopulatedEngine* const engines_RS[] = {
// Russia
const PrepopulatedEngine* const engines_RU[] = {
&yandex_ru,
- &google,
+ &google, &startpage,
&mail_ru,
&bing,
};
// Rwanda
const PrepopulatedEngine* const engines_RW[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_ru,
@@ -723,7 +723,7 @@ const PrepopulatedEngine* const engines_RW[] = {
// Saudi Arabia
const PrepopulatedEngine* const engines_SA[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_com,
@@ -731,7 +731,7 @@ const PrepopulatedEngine* const engines_SA[] = {
// Sweden
const PrepopulatedEngine* const engines_SE[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_se,
&duckduckgo,
@@ -739,7 +739,7 @@ const PrepopulatedEngine* const engines_SE[] = {
// Singapore
const PrepopulatedEngine* const engines_SG[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo_sg,
&yandex_com,
@@ -747,7 +747,7 @@ const PrepopulatedEngine* const engines_SG[] = {
// Slovenia
const PrepopulatedEngine* const engines_SI[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -755,7 +755,7 @@ const PrepopulatedEngine* const engines_SI[] = {
// Slovakia
const PrepopulatedEngine* const engines_SK[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -763,7 +763,7 @@ const PrepopulatedEngine* const engines_SK[] = {
// El Salvador
const PrepopulatedEngine* const engines_SV[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -771,7 +771,7 @@ const PrepopulatedEngine* const engines_SV[] = {
// Syria
const PrepopulatedEngine* const engines_SY[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_ru,
@@ -779,7 +779,7 @@ const PrepopulatedEngine* const engines_SY[] = {
// Thailand
const PrepopulatedEngine* const engines_TH[] = {
- &google,
+ &google, &startpage,
&yahoo_th,
&bing,
&ask,
@@ -787,7 +787,7 @@ const PrepopulatedEngine* const engines_TH[] = {
// Tunisia
const PrepopulatedEngine* const engines_TN[] = {
- &google,
+ &google, &startpage,
&yahoo,
&bing,
&yandex_ru,
@@ -795,7 +795,7 @@ const PrepopulatedEngine* const engines_TN[] = {
// Turkey
const PrepopulatedEngine* const engines_TR[] = {
- &google,
+ &google, &startpage,
&yandex_tr,
&yahoo_tr,
&bing,
@@ -803,7 +803,7 @@ const PrepopulatedEngine* const engines_TR[] = {
// Trinidad and Tobago
const PrepopulatedEngine* const engines_TT[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -811,7 +811,7 @@ const PrepopulatedEngine* const engines_TT[] = {
// Taiwan
const PrepopulatedEngine* const engines_TW[] = {
- &google,
+ &google, &startpage,
&yahoo_tw,
&bing,
&baidu,
@@ -819,7 +819,7 @@ const PrepopulatedEngine* const engines_TW[] = {
// Tanzania
const PrepopulatedEngine* const engines_TZ[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&yandex_ru,
@@ -827,7 +827,7 @@ const PrepopulatedEngine* const engines_TZ[] = {
// Ukraine
const PrepopulatedEngine* const engines_UA[] = {
- &google,
+ &google, &startpage,
&yandex_ua,
&mail_ru,
&bing,
@@ -835,7 +835,7 @@ const PrepopulatedEngine* const engines_UA[] = {
// United States
const PrepopulatedEngine* const engines_US[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -843,7 +843,7 @@ const PrepopulatedEngine* const engines_US[] = {
// Uruguay
const PrepopulatedEngine* const engines_UY[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -851,7 +851,7 @@ const PrepopulatedEngine* const engines_UY[] = {
// Venezuela
const PrepopulatedEngine* const engines_VE[] = {
- &google,
+ &google, &startpage,
&yahoo_ve,
&bing,
&duckduckgo,
@@ -859,7 +859,7 @@ const PrepopulatedEngine* const engines_VE[] = {
// Vietnam
const PrepopulatedEngine* const engines_VN[] = {
- &google,
+ &google, &startpage,
&coccoc,
&bing,
&yahoo_vn,
@@ -867,7 +867,7 @@ const PrepopulatedEngine* const engines_VN[] = {
// Yemen
const PrepopulatedEngine* const engines_YE[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&baidu,
@@ -875,7 +875,7 @@ const PrepopulatedEngine* const engines_YE[] = {
// South Africa
const PrepopulatedEngine* const engines_ZA[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&duckduckgo,
@@ -883,7 +883,7 @@ const PrepopulatedEngine* const engines_ZA[] = {
// Zimbabwe
const PrepopulatedEngine* const engines_ZW[] = {
- &google,
+ &google, &startpage,
&bing,
&yahoo,
&baidu,
@@ -899,7 +899,7 @@ const PrepopulatedEngine* const kAllEngines[] = {
&coccoc,
&daum,
&duckduckgo,
- &google,
+ &google, &startpage,
&mail_ru,
&naver,
&parsijoo,
--
2.11.0