1021 lines
25 KiB
Diff
1021 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 | 10 +
|
|
components/search_engines/search_engine_type.h | 1 +
|
|
.../template_url_prepopulate_data.cc | 218 ++++++++++-----------
|
|
3 files changed, 120 insertions(+), 109 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
|
|
@@ -198,6 +198,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,14 +395,14 @@ const PrepopulatedEngine* const engines_IQ[] = {
|
|
|
|
// Iran
|
|
const PrepopulatedEngine* const engines_IR[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
};
|
|
|
|
// Iceland
|
|
const PrepopulatedEngine* const engines_IS[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -410,7 +410,7 @@ const PrepopulatedEngine* const engines_IS[] = {
|
|
|
|
// Italy
|
|
const PrepopulatedEngine* const engines_IT[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -418,7 +418,7 @@ const PrepopulatedEngine* const engines_IT[] = {
|
|
|
|
// Jamaica
|
|
const PrepopulatedEngine* const engines_JM[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -426,7 +426,7 @@ const PrepopulatedEngine* const engines_JM[] = {
|
|
|
|
// Jordan
|
|
const PrepopulatedEngine* const engines_JO[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&yandex_ru,
|
|
@@ -434,7 +434,7 @@ const PrepopulatedEngine* const engines_JO[] = {
|
|
|
|
// Japan
|
|
const PrepopulatedEngine* const engines_JP[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo_jp,
|
|
&bing,
|
|
&baidu,
|
|
@@ -442,7 +442,7 @@ const PrepopulatedEngine* const engines_JP[] = {
|
|
|
|
// Kenya
|
|
const PrepopulatedEngine* const engines_KE[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&duckduckgo,
|
|
@@ -450,7 +450,7 @@ const PrepopulatedEngine* const engines_KE[] = {
|
|
|
|
// South Korea
|
|
const PrepopulatedEngine* const engines_KR[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&naver,
|
|
&daum,
|
|
&bing,
|
|
@@ -458,7 +458,7 @@ const PrepopulatedEngine* const engines_KR[] = {
|
|
|
|
// Kuwait
|
|
const PrepopulatedEngine* const engines_KW[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&ask,
|
|
@@ -466,7 +466,7 @@ const PrepopulatedEngine* const engines_KW[] = {
|
|
|
|
// Kazakhstan
|
|
const PrepopulatedEngine* const engines_KZ[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yandex_kz,
|
|
&mail_ru,
|
|
&bing,
|
|
@@ -474,7 +474,7 @@ const PrepopulatedEngine* const engines_KZ[] = {
|
|
|
|
// Lebanon
|
|
const PrepopulatedEngine* const engines_LB[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -482,7 +482,7 @@ const PrepopulatedEngine* const engines_LB[] = {
|
|
|
|
// Liechtenstein
|
|
const PrepopulatedEngine* const engines_LI[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&duckduckgo,
|
|
&yahoo,
|
|
@@ -490,7 +490,7 @@ const PrepopulatedEngine* const engines_LI[] = {
|
|
|
|
// Lithuania
|
|
const PrepopulatedEngine* const engines_LT[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&yandex_ru,
|
|
@@ -498,7 +498,7 @@ const PrepopulatedEngine* const engines_LT[] = {
|
|
|
|
// Luxembourg
|
|
const PrepopulatedEngine* const engines_LU[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&duckduckgo,
|
|
&yahoo,
|
|
@@ -506,7 +506,7 @@ const PrepopulatedEngine* const engines_LU[] = {
|
|
|
|
// Latvia
|
|
const PrepopulatedEngine* const engines_LV[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yandex_ru,
|
|
&yahoo,
|
|
@@ -514,7 +514,7 @@ const PrepopulatedEngine* const engines_LV[] = {
|
|
|
|
// Libya
|
|
const PrepopulatedEngine* const engines_LY[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&yandex_com,
|
|
@@ -522,7 +522,7 @@ const PrepopulatedEngine* const engines_LY[] = {
|
|
|
|
// Morocco
|
|
const PrepopulatedEngine* const engines_MA[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&yandex_ru,
|
|
@@ -530,7 +530,7 @@ const PrepopulatedEngine* const engines_MA[] = {
|
|
|
|
// Monaco
|
|
const PrepopulatedEngine* const engines_MC[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -538,7 +538,7 @@ const PrepopulatedEngine* const engines_MC[] = {
|
|
|
|
// Moldova
|
|
const PrepopulatedEngine* const engines_MD[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yandex_ru,
|
|
&mail_ru,
|
|
&duckduckgo,
|
|
@@ -546,7 +546,7 @@ const PrepopulatedEngine* const engines_MD[] = {
|
|
|
|
// Montenegro
|
|
const PrepopulatedEngine* const engines_ME[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&yandex_ru,
|
|
@@ -554,7 +554,7 @@ const PrepopulatedEngine* const engines_ME[] = {
|
|
|
|
// Macedonia
|
|
const PrepopulatedEngine* const engines_MK[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&duckduckgo,
|
|
@@ -562,7 +562,7 @@ const PrepopulatedEngine* const engines_MK[] = {
|
|
|
|
// Mexico
|
|
const PrepopulatedEngine* const engines_MX[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo_mx,
|
|
&duckduckgo,
|
|
@@ -570,7 +570,7 @@ const PrepopulatedEngine* const engines_MX[] = {
|
|
|
|
// Malaysia
|
|
const PrepopulatedEngine* const engines_MY[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo_my,
|
|
&bing,
|
|
&baidu,
|
|
@@ -578,7 +578,7 @@ const PrepopulatedEngine* const engines_MY[] = {
|
|
|
|
// Nicaragua
|
|
const PrepopulatedEngine* const engines_NI[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -586,7 +586,7 @@ const PrepopulatedEngine* const engines_NI[] = {
|
|
|
|
// Netherlands
|
|
const PrepopulatedEngine* const engines_NL[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo_nl,
|
|
&duckduckgo,
|
|
@@ -594,7 +594,7 @@ const PrepopulatedEngine* const engines_NL[] = {
|
|
|
|
// Norway
|
|
const PrepopulatedEngine* const engines_NO[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -602,7 +602,7 @@ const PrepopulatedEngine* const engines_NO[] = {
|
|
|
|
// New Zealand
|
|
const PrepopulatedEngine* const engines_NZ[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&duckduckgo,
|
|
&yahoo_nz,
|
|
@@ -610,7 +610,7 @@ const PrepopulatedEngine* const engines_NZ[] = {
|
|
|
|
// Oman
|
|
const PrepopulatedEngine* const engines_OM[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&ask,
|
|
@@ -618,7 +618,7 @@ const PrepopulatedEngine* const engines_OM[] = {
|
|
|
|
// Panama
|
|
const PrepopulatedEngine* const engines_PA[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -626,7 +626,7 @@ const PrepopulatedEngine* const engines_PA[] = {
|
|
|
|
// Peru
|
|
const PrepopulatedEngine* const engines_PE[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo_pe,
|
|
&bing,
|
|
&duckduckgo,
|
|
@@ -634,7 +634,7 @@ const PrepopulatedEngine* const engines_PE[] = {
|
|
|
|
// Philippines
|
|
const PrepopulatedEngine* const engines_PH[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo_ph,
|
|
&bing,
|
|
&duckduckgo,
|
|
@@ -642,7 +642,7 @@ const PrepopulatedEngine* const engines_PH[] = {
|
|
|
|
// Pakistan
|
|
const PrepopulatedEngine* const engines_PK[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&baidu,
|
|
@@ -650,7 +650,7 @@ const PrepopulatedEngine* const engines_PK[] = {
|
|
|
|
// Poland
|
|
const PrepopulatedEngine* const engines_PL[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -658,7 +658,7 @@ const PrepopulatedEngine* const engines_PL[] = {
|
|
|
|
// Puerto Rico
|
|
const PrepopulatedEngine* const engines_PR[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -666,7 +666,7 @@ const PrepopulatedEngine* const engines_PR[] = {
|
|
|
|
// Portugal
|
|
const PrepopulatedEngine* const engines_PT[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -674,7 +674,7 @@ const PrepopulatedEngine* const engines_PT[] = {
|
|
|
|
// Paraguay
|
|
const PrepopulatedEngine* const engines_PY[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -682,7 +682,7 @@ const PrepopulatedEngine* const engines_PY[] = {
|
|
|
|
// Qatar
|
|
const PrepopulatedEngine* const engines_QA[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&ask,
|
|
@@ -690,7 +690,7 @@ const PrepopulatedEngine* const engines_QA[] = {
|
|
|
|
// Romania
|
|
const PrepopulatedEngine* const engines_RO[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -698,7 +698,7 @@ const PrepopulatedEngine* const engines_RO[] = {
|
|
|
|
// Serbia
|
|
const PrepopulatedEngine* const engines_RS[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&duckduckgo,
|
|
@@ -707,14 +707,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,
|
|
@@ -722,7 +722,7 @@ const PrepopulatedEngine* const engines_RW[] = {
|
|
|
|
// Saudi Arabia
|
|
const PrepopulatedEngine* const engines_SA[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&yandex_com,
|
|
@@ -730,7 +730,7 @@ const PrepopulatedEngine* const engines_SA[] = {
|
|
|
|
// Sweden
|
|
const PrepopulatedEngine* const engines_SE[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo_se,
|
|
&duckduckgo,
|
|
@@ -738,7 +738,7 @@ const PrepopulatedEngine* const engines_SE[] = {
|
|
|
|
// Singapore
|
|
const PrepopulatedEngine* const engines_SG[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo_sg,
|
|
&yandex_com,
|
|
@@ -746,7 +746,7 @@ const PrepopulatedEngine* const engines_SG[] = {
|
|
|
|
// Slovenia
|
|
const PrepopulatedEngine* const engines_SI[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -754,7 +754,7 @@ const PrepopulatedEngine* const engines_SI[] = {
|
|
|
|
// Slovakia
|
|
const PrepopulatedEngine* const engines_SK[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -762,7 +762,7 @@ const PrepopulatedEngine* const engines_SK[] = {
|
|
|
|
// El Salvador
|
|
const PrepopulatedEngine* const engines_SV[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -770,7 +770,7 @@ const PrepopulatedEngine* const engines_SV[] = {
|
|
|
|
// Syria
|
|
const PrepopulatedEngine* const engines_SY[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&yandex_ru,
|
|
@@ -778,7 +778,7 @@ const PrepopulatedEngine* const engines_SY[] = {
|
|
|
|
// Thailand
|
|
const PrepopulatedEngine* const engines_TH[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo_th,
|
|
&bing,
|
|
&ask,
|
|
@@ -786,7 +786,7 @@ const PrepopulatedEngine* const engines_TH[] = {
|
|
|
|
// Tunisia
|
|
const PrepopulatedEngine* const engines_TN[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo,
|
|
&bing,
|
|
&yandex_ru,
|
|
@@ -794,7 +794,7 @@ const PrepopulatedEngine* const engines_TN[] = {
|
|
|
|
// Turkey
|
|
const PrepopulatedEngine* const engines_TR[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yandex_tr,
|
|
&yahoo_tr,
|
|
&bing,
|
|
@@ -802,7 +802,7 @@ const PrepopulatedEngine* const engines_TR[] = {
|
|
|
|
// Trinidad and Tobago
|
|
const PrepopulatedEngine* const engines_TT[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -810,7 +810,7 @@ const PrepopulatedEngine* const engines_TT[] = {
|
|
|
|
// Taiwan
|
|
const PrepopulatedEngine* const engines_TW[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo_tw,
|
|
&bing,
|
|
&baidu,
|
|
@@ -818,7 +818,7 @@ const PrepopulatedEngine* const engines_TW[] = {
|
|
|
|
// Tanzania
|
|
const PrepopulatedEngine* const engines_TZ[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&yandex_ru,
|
|
@@ -826,7 +826,7 @@ const PrepopulatedEngine* const engines_TZ[] = {
|
|
|
|
// Ukraine
|
|
const PrepopulatedEngine* const engines_UA[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yandex_ua,
|
|
&mail_ru,
|
|
&bing,
|
|
@@ -834,7 +834,7 @@ const PrepopulatedEngine* const engines_UA[] = {
|
|
|
|
// United States
|
|
const PrepopulatedEngine* const engines_US[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -842,7 +842,7 @@ const PrepopulatedEngine* const engines_US[] = {
|
|
|
|
// Uruguay
|
|
const PrepopulatedEngine* const engines_UY[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -850,7 +850,7 @@ const PrepopulatedEngine* const engines_UY[] = {
|
|
|
|
// Venezuela
|
|
const PrepopulatedEngine* const engines_VE[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&yahoo_ve,
|
|
&bing,
|
|
&duckduckgo,
|
|
@@ -858,7 +858,7 @@ const PrepopulatedEngine* const engines_VE[] = {
|
|
|
|
// Vietnam
|
|
const PrepopulatedEngine* const engines_VN[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&coccoc,
|
|
&bing,
|
|
&yahoo_vn,
|
|
@@ -866,7 +866,7 @@ const PrepopulatedEngine* const engines_VN[] = {
|
|
|
|
// Yemen
|
|
const PrepopulatedEngine* const engines_YE[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&baidu,
|
|
@@ -874,7 +874,7 @@ const PrepopulatedEngine* const engines_YE[] = {
|
|
|
|
// South Africa
|
|
const PrepopulatedEngine* const engines_ZA[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&duckduckgo,
|
|
@@ -882,7 +882,7 @@ const PrepopulatedEngine* const engines_ZA[] = {
|
|
|
|
// Zimbabwe
|
|
const PrepopulatedEngine* const engines_ZW[] = {
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&bing,
|
|
&yahoo,
|
|
&baidu,
|
|
@@ -898,7 +898,7 @@ const PrepopulatedEngine* const kAllEngines[] = {
|
|
&coccoc,
|
|
&daum,
|
|
&duckduckgo,
|
|
- &google,
|
|
+ &google, &startpage,
|
|
&mail_ru,
|
|
&naver,
|
|
&qwant,
|
|
--
|
|
2.11.0
|
|
|