12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031 |
- From: csagan5 <32685696+csagan5@users.noreply.github.com>
- Date: Mon, 11 Dec 2017 22:42:11 +0100
- Subject: Add English-only search engine
- Add a Google search engine that forces languages to English,
- disable from all its searches RLZ and field experiments querystring parameters.
- ---
- .../search_engines/prepopulated_engines.json | 21 ++
- .../search_engines/search_engine_type.h | 1 +
- .../template_url_prepopulate_data.cc | 216 +++++++++---------
- 3 files changed, 130 insertions(+), 108 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
- @@ -133,6 +133,27 @@
- "id": 1
- },
-
- + "googleen": {
- + "name": "Google in English",
- + "keyword": "googleen",
- + "favicon_url": "https://www.google.com/favicon.ico",
- + "search_url": "{google:baseURL}search?q={searchTerms}&{google:originalQueryForSuggestion}{google:iOSSearchLanguage}{google:searchClient}{google:contextualSearchVersion}ie={inputEncoding}&hl=en",
- + "suggest_url": "{google:baseSuggestURL}search?client={google:suggestClient}&gs_ri={google:suggestRid}&xssi=t&q={searchTerms}&{google:inputType}{google:pageClassification}{google:searchVersion}{google:prefetchQuery}sugkey={google:suggestAPIKeyParameter}&hl=en",
- + "image_url": "{google:baseURL}searchbyimage/upload?hl=en",
- + "new_tab_url": "{google:baseURL}_/chrome/newtab?hl=en&ie={inputEncoding}",
- + "contextual_search_url": "{google:baseURL}_/contextualsearch?{google:contextualSearchVersion}{google:contextualSearchContextData}&hl=en",
- + "image_url_post_params": "encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight}",
- + "alternate_urls": [
- + "{google:baseURL}?hl=en#q={searchTerms}",
- + "{google:baseURL}search?hl=en#q={searchTerms}",
- + "{google:baseURL}webhp?hl=en#q={searchTerms}",
- + "{google:baseURL}s?hl=en#q={searchTerms}",
- + "{google:baseURL}s?hl=en&q={searchTerms}"
- + ],
- + "type": "SEARCH_ENGINE_GOOGLE_EN",
- + "id": 13
- + },
- +
- "mail_ru": {
- "name": "@MAIL.RU",
- "keyword": "mail.ru",
- 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
- @@ -74,6 +74,7 @@ enum SearchEngineType {
- SEARCH_ENGINE_OCEANHERO = 57,
- SEARCH_ENGINE_PRIVACYWALL = 58,
- SEARCH_ENGINE_ECOSIA = 59,
- + SEARCH_ENGINE_GOOGLE_EN,
-
- 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
- @@ -29,7 +29,7 @@ namespace {
-
- // Default (for countries with no better engine set)
- const PrepopulatedEngine* const engines_default[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- };
- @@ -38,7 +38,7 @@ const PrepopulatedEngine* const engines_default[] = {
- // Engine selection by country ------------------------------------------------
- // United Arab Emirates
- const PrepopulatedEngine* const engines_AE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -47,7 +47,7 @@ const PrepopulatedEngine* const engines_AE[] = {
-
- // Albania
- const PrepopulatedEngine* const engines_AL[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -56,7 +56,7 @@ const PrepopulatedEngine* const engines_AL[] = {
-
- // Argentina
- const PrepopulatedEngine* const engines_AR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_ar,
- &duckduckgo,
- @@ -65,7 +65,7 @@ const PrepopulatedEngine* const engines_AR[] = {
-
- // Austria
- const PrepopulatedEngine* const engines_AT[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &duckduckgo,
- &yahoo_at,
- @@ -74,7 +74,7 @@ const PrepopulatedEngine* const engines_AT[] = {
-
- // Australia
- const PrepopulatedEngine* const engines_AU[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_au,
- &duckduckgo,
- @@ -83,7 +83,7 @@ const PrepopulatedEngine* const engines_AU[] = {
-
- // Bosnia and Herzegovina
- const PrepopulatedEngine* const engines_BA[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -91,7 +91,7 @@ const PrepopulatedEngine* const engines_BA[] = {
-
- // Belgium
- const PrepopulatedEngine* const engines_BE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &ecosia,
- @@ -100,7 +100,7 @@ const PrepopulatedEngine* const engines_BE[] = {
-
- // Bulgaria
- const PrepopulatedEngine* const engines_BG[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -109,7 +109,7 @@ const PrepopulatedEngine* const engines_BG[] = {
-
- // Bahrain
- const PrepopulatedEngine* const engines_BH[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -118,7 +118,7 @@ const PrepopulatedEngine* const engines_BH[] = {
-
- // Burundi
- const PrepopulatedEngine* const engines_BI[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -127,7 +127,7 @@ const PrepopulatedEngine* const engines_BI[] = {
-
- // Brunei
- const PrepopulatedEngine* const engines_BN[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -136,7 +136,7 @@ const PrepopulatedEngine* const engines_BN[] = {
-
- // Bolivia
- const PrepopulatedEngine* const engines_BO[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -145,7 +145,7 @@ const PrepopulatedEngine* const engines_BO[] = {
-
- // Brazil
- const PrepopulatedEngine* const engines_BR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_br,
- &duckduckgo,
- @@ -154,7 +154,7 @@ const PrepopulatedEngine* const engines_BR[] = {
-
- // Belarus
- const PrepopulatedEngine* const engines_BY[] = {
- - &google,
- + &googleen, &google,
- &yandex_by,
- &mail_ru,
- &bing,
- @@ -163,7 +163,7 @@ const PrepopulatedEngine* const engines_BY[] = {
-
- // Belize
- const PrepopulatedEngine* const engines_BZ[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -172,7 +172,7 @@ const PrepopulatedEngine* const engines_BZ[] = {
-
- // Canada
- const PrepopulatedEngine* const engines_CA[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_ca,
- &duckduckgo,
- @@ -181,7 +181,7 @@ const PrepopulatedEngine* const engines_CA[] = {
-
- // Switzerland
- const PrepopulatedEngine* const engines_CH[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &duckduckgo,
- &ecosia,
- @@ -190,7 +190,7 @@ const PrepopulatedEngine* const engines_CH[] = {
-
- // Chile
- const PrepopulatedEngine* const engines_CL[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_es,
- &duckduckgo,
- @@ -201,14 +201,14 @@ const PrepopulatedEngine* const engines_CL[] = {
- const PrepopulatedEngine* const engines_CN[] = {
- &baidu,
- &sogou,
- - &google,
- + &googleen, &google,
- &bing,
- &so_360,
- };
-
- // Colombia
- const PrepopulatedEngine* const engines_CO[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_es,
- &ecosia,
- @@ -217,7 +217,7 @@ const PrepopulatedEngine* const engines_CO[] = {
-
- // Costa Rica
- const PrepopulatedEngine* const engines_CR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -226,7 +226,7 @@ const PrepopulatedEngine* const engines_CR[] = {
-
- // Czech Republic
- const PrepopulatedEngine* const engines_CZ[] = {
- - &google,
- + &googleen, &google,
- &seznam_cz,
- &bing,
- &yahoo,
- @@ -235,7 +235,7 @@ const PrepopulatedEngine* const engines_CZ[] = {
-
- // Germany
- const PrepopulatedEngine* const engines_DE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &duckduckgo,
- &ecosia,
- @@ -244,7 +244,7 @@ const PrepopulatedEngine* const engines_DE[] = {
-
- // Denmark
- const PrepopulatedEngine* const engines_DK[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_dk,
- &duckduckgo,
- @@ -253,7 +253,7 @@ const PrepopulatedEngine* const engines_DK[] = {
-
- // Dominican Republic
- const PrepopulatedEngine* const engines_DO[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -262,7 +262,7 @@ const PrepopulatedEngine* const engines_DO[] = {
-
- // Algeria
- const PrepopulatedEngine* const engines_DZ[] = {
- - &google,
- + &googleen, &google,
- &yahoo_uk,
- &bing,
- &yandex_ru,
- @@ -271,7 +271,7 @@ const PrepopulatedEngine* const engines_DZ[] = {
-
- // Ecuador
- const PrepopulatedEngine* const engines_EC[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -280,7 +280,7 @@ const PrepopulatedEngine* const engines_EC[] = {
-
- // Estonia
- const PrepopulatedEngine* const engines_EE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yandex_ru,
- &yahoo,
- @@ -289,7 +289,7 @@ const PrepopulatedEngine* const engines_EE[] = {
-
- // Egypt
- const PrepopulatedEngine* const engines_EG[] = {
- - &google,
- + &googleen, &google,
- &yahoo,
- &bing,
- &yandex_com,
- @@ -298,7 +298,7 @@ const PrepopulatedEngine* const engines_EG[] = {
-
- // Spain
- const PrepopulatedEngine* const engines_ES[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_es,
- &duckduckgo,
- @@ -307,7 +307,7 @@ const PrepopulatedEngine* const engines_ES[] = {
-
- // Finland
- const PrepopulatedEngine* const engines_FI[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_fi,
- &duckduckgo,
- @@ -316,7 +316,7 @@ const PrepopulatedEngine* const engines_FI[] = {
-
- // Faroe Islands
- const PrepopulatedEngine* const engines_FO[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_dk,
- &duckduckgo,
- @@ -325,7 +325,7 @@ const PrepopulatedEngine* const engines_FO[] = {
-
- // France
- const PrepopulatedEngine* const engines_FR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_fr,
- &qwant,
- @@ -334,7 +334,7 @@ const PrepopulatedEngine* const engines_FR[] = {
-
- // United Kingdom
- const PrepopulatedEngine* const engines_GB[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_uk,
- &duckduckgo,
- @@ -343,7 +343,7 @@ const PrepopulatedEngine* const engines_GB[] = {
-
- // Greece
- const PrepopulatedEngine* const engines_GR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -352,7 +352,7 @@ const PrepopulatedEngine* const engines_GR[] = {
-
- // Guatemala
- const PrepopulatedEngine* const engines_GT[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -361,7 +361,7 @@ const PrepopulatedEngine* const engines_GT[] = {
-
- // Hong Kong
- const PrepopulatedEngine* const engines_HK[] = {
- - &google,
- + &googleen, &google,
- &yahoo_hk,
- &bing,
- &baidu,
- @@ -370,7 +370,7 @@ const PrepopulatedEngine* const engines_HK[] = {
-
- // Honduras
- const PrepopulatedEngine* const engines_HN[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -379,7 +379,7 @@ const PrepopulatedEngine* const engines_HN[] = {
-
- // Croatia
- const PrepopulatedEngine* const engines_HR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -388,7 +388,7 @@ const PrepopulatedEngine* const engines_HR[] = {
-
- // Hungary
- const PrepopulatedEngine* const engines_HU[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -397,7 +397,7 @@ const PrepopulatedEngine* const engines_HU[] = {
-
- // Indonesia
- const PrepopulatedEngine* const engines_ID[] = {
- - &google,
- + &googleen, &google,
- &yahoo_id,
- &bing,
- &duckduckgo,
- @@ -406,7 +406,7 @@ const PrepopulatedEngine* const engines_ID[] = {
-
- // Ireland
- const PrepopulatedEngine* const engines_IE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -415,7 +415,7 @@ const PrepopulatedEngine* const engines_IE[] = {
-
- // Israel
- const PrepopulatedEngine* const engines_IL[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yandex_ru,
- &yahoo,
- @@ -424,7 +424,7 @@ const PrepopulatedEngine* const engines_IL[] = {
-
- // India
- const PrepopulatedEngine* const engines_IN[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_in,
- &duckduckgo,
- @@ -433,7 +433,7 @@ const PrepopulatedEngine* const engines_IN[] = {
-
- // Iraq
- const PrepopulatedEngine* const engines_IQ[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_uk,
- &yandex_com,
- @@ -442,7 +442,7 @@ const PrepopulatedEngine* const engines_IQ[] = {
-
- // Iran
- const PrepopulatedEngine* const engines_IR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &ask,
- @@ -451,7 +451,7 @@ const PrepopulatedEngine* const engines_IR[] = {
-
- // Iceland
- const PrepopulatedEngine* const engines_IS[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -460,7 +460,7 @@ const PrepopulatedEngine* const engines_IS[] = {
-
- // Italy
- const PrepopulatedEngine* const engines_IT[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -469,7 +469,7 @@ const PrepopulatedEngine* const engines_IT[] = {
-
- // Jamaica
- const PrepopulatedEngine* const engines_JM[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -478,7 +478,7 @@ const PrepopulatedEngine* const engines_JM[] = {
-
- // Jordan
- const PrepopulatedEngine* const engines_JO[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -487,7 +487,7 @@ const PrepopulatedEngine* const engines_JO[] = {
-
- // Japan
- const PrepopulatedEngine* const engines_JP[] = {
- - &google,
- + &googleen, &google,
- &yahoo_jp,
- &bing,
- &baidu,
- @@ -496,7 +496,7 @@ const PrepopulatedEngine* const engines_JP[] = {
-
- // Kenya
- const PrepopulatedEngine* const engines_KE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -505,7 +505,7 @@ const PrepopulatedEngine* const engines_KE[] = {
-
- // South Korea
- const PrepopulatedEngine* const engines_KR[] = {
- - &google,
- + &googleen, &google,
- &naver,
- &bing,
- &daum,
- @@ -514,7 +514,7 @@ const PrepopulatedEngine* const engines_KR[] = {
-
- // Kuwait
- const PrepopulatedEngine* const engines_KW[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -523,7 +523,7 @@ const PrepopulatedEngine* const engines_KW[] = {
-
- // Kazakhstan
- const PrepopulatedEngine* const engines_KZ[] = {
- - &google,
- + &googleen, &google,
- &yandex_kz,
- &mail_ru,
- &bing,
- @@ -532,7 +532,7 @@ const PrepopulatedEngine* const engines_KZ[] = {
-
- // Lebanon
- const PrepopulatedEngine* const engines_LB[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -541,7 +541,7 @@ const PrepopulatedEngine* const engines_LB[] = {
-
- // Liechtenstein
- const PrepopulatedEngine* const engines_LI[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &duckduckgo,
- &yahoo,
- @@ -550,7 +550,7 @@ const PrepopulatedEngine* const engines_LI[] = {
-
- // Lithuania
- const PrepopulatedEngine* const engines_LT[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &yandex_ru,
- @@ -559,7 +559,7 @@ const PrepopulatedEngine* const engines_LT[] = {
-
- // Luxembourg
- const PrepopulatedEngine* const engines_LU[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &duckduckgo,
- &yahoo,
- @@ -568,7 +568,7 @@ const PrepopulatedEngine* const engines_LU[] = {
-
- // Latvia
- const PrepopulatedEngine* const engines_LV[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yandex_ru,
- &yahoo,
- @@ -577,7 +577,7 @@ const PrepopulatedEngine* const engines_LV[] = {
-
- // Libya
- const PrepopulatedEngine* const engines_LY[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &yandex_com,
- @@ -586,7 +586,7 @@ const PrepopulatedEngine* const engines_LY[] = {
-
- // Morocco
- const PrepopulatedEngine* const engines_MA[] = {
- - &google,
- + &googleen, &google,
- &yahoo_fr,
- &bing,
- &yandex_com,
- @@ -595,7 +595,7 @@ const PrepopulatedEngine* const engines_MA[] = {
-
- // Monaco
- const PrepopulatedEngine* const engines_MC[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -604,7 +604,7 @@ const PrepopulatedEngine* const engines_MC[] = {
-
- // Moldova
- const PrepopulatedEngine* const engines_MD[] = {
- - &google,
- + &googleen, &google,
- &yandex_ru,
- &mail_ru,
- &bing,
- @@ -613,7 +613,7 @@ const PrepopulatedEngine* const engines_MD[] = {
-
- // Montenegro
- const PrepopulatedEngine* const engines_ME[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &yandex_ru,
- @@ -622,7 +622,7 @@ const PrepopulatedEngine* const engines_ME[] = {
-
- // Macedonia
- const PrepopulatedEngine* const engines_MK[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -631,7 +631,7 @@ const PrepopulatedEngine* const engines_MK[] = {
-
- // Mexico
- const PrepopulatedEngine* const engines_MX[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_mx,
- &duckduckgo,
- @@ -640,7 +640,7 @@ const PrepopulatedEngine* const engines_MX[] = {
-
- // Malaysia
- const PrepopulatedEngine* const engines_MY[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_my,
- &duckduckgo,
- @@ -649,7 +649,7 @@ const PrepopulatedEngine* const engines_MY[] = {
-
- // Nicaragua
- const PrepopulatedEngine* const engines_NI[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -658,7 +658,7 @@ const PrepopulatedEngine* const engines_NI[] = {
-
- // Netherlands
- const PrepopulatedEngine* const engines_NL[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &duckduckgo,
- &yahoo_nl,
- @@ -667,7 +667,7 @@ const PrepopulatedEngine* const engines_NL[] = {
-
- // Norway
- const PrepopulatedEngine* const engines_NO[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -676,7 +676,7 @@ const PrepopulatedEngine* const engines_NO[] = {
-
- // New Zealand
- const PrepopulatedEngine* const engines_NZ[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_nz,
- &duckduckgo,
- @@ -685,7 +685,7 @@ const PrepopulatedEngine* const engines_NZ[] = {
-
- // Oman
- const PrepopulatedEngine* const engines_OM[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -694,7 +694,7 @@ const PrepopulatedEngine* const engines_OM[] = {
-
- // Panama
- const PrepopulatedEngine* const engines_PA[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -703,7 +703,7 @@ const PrepopulatedEngine* const engines_PA[] = {
-
- // Peru
- const PrepopulatedEngine* const engines_PE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_es,
- &ecosia,
- @@ -712,7 +712,7 @@ const PrepopulatedEngine* const engines_PE[] = {
-
- // Philippines
- const PrepopulatedEngine* const engines_PH[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &ecosia,
- @@ -721,7 +721,7 @@ const PrepopulatedEngine* const engines_PH[] = {
-
- // Pakistan
- const PrepopulatedEngine* const engines_PK[] = {
- - &google,
- + &googleen, &google,
- &yahoo,
- &bing,
- &duckduckgo,
- @@ -730,7 +730,7 @@ const PrepopulatedEngine* const engines_PK[] = {
-
- // Poland
- const PrepopulatedEngine* const engines_PL[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -738,7 +738,7 @@ const PrepopulatedEngine* const engines_PL[] = {
-
- // Puerto Rico
- const PrepopulatedEngine* const engines_PR[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -747,7 +747,7 @@ const PrepopulatedEngine* const engines_PR[] = {
-
- // Portugal
- const PrepopulatedEngine* const engines_PT[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -756,7 +756,7 @@ const PrepopulatedEngine* const engines_PT[] = {
-
- // Paraguay
- const PrepopulatedEngine* const engines_PY[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -765,7 +765,7 @@ const PrepopulatedEngine* const engines_PY[] = {
-
- // Qatar
- const PrepopulatedEngine* const engines_QA[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -774,7 +774,7 @@ const PrepopulatedEngine* const engines_QA[] = {
-
- // Romania
- const PrepopulatedEngine* const engines_RO[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -783,7 +783,7 @@ const PrepopulatedEngine* const engines_RO[] = {
-
- // Serbia
- const PrepopulatedEngine* const engines_RS[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -792,7 +792,7 @@ const PrepopulatedEngine* const engines_RS[] = {
-
- // Russia
- const PrepopulatedEngine* const engines_RU[] = {
- - &google,
- + &googleen, &google,
- &yandex_ru,
- &mail_ru,
- &bing,
- @@ -801,7 +801,7 @@ const PrepopulatedEngine* const engines_RU[] = {
-
- // Rwanda
- const PrepopulatedEngine* const engines_RW[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -810,7 +810,7 @@ const PrepopulatedEngine* const engines_RW[] = {
-
- // Saudi Arabia
- const PrepopulatedEngine* const engines_SA[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &yandex_com,
- @@ -819,7 +819,7 @@ const PrepopulatedEngine* const engines_SA[] = {
-
- // Sweden
- const PrepopulatedEngine* const engines_SE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo_se,
- &duckduckgo,
- @@ -828,7 +828,7 @@ const PrepopulatedEngine* const engines_SE[] = {
-
- // Singapore
- const PrepopulatedEngine* const engines_SG[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &baidu,
- @@ -837,7 +837,7 @@ const PrepopulatedEngine* const engines_SG[] = {
-
- // Slovenia
- const PrepopulatedEngine* const engines_SI[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &duckduckgo,
- &yahoo,
- @@ -845,7 +845,7 @@ const PrepopulatedEngine* const engines_SI[] = {
-
- // Slovakia
- const PrepopulatedEngine* const engines_SK[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -854,7 +854,7 @@ const PrepopulatedEngine* const engines_SK[] = {
-
- // El Salvador
- const PrepopulatedEngine* const engines_SV[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -863,7 +863,7 @@ const PrepopulatedEngine* const engines_SV[] = {
-
- // Syria
- const PrepopulatedEngine* const engines_SY[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &yandex_ru,
- @@ -872,7 +872,7 @@ const PrepopulatedEngine* const engines_SY[] = {
-
- // Thailand
- const PrepopulatedEngine* const engines_TH[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -881,7 +881,7 @@ const PrepopulatedEngine* const engines_TH[] = {
-
- // Tunisia
- const PrepopulatedEngine* const engines_TN[] = {
- - &google,
- + &googleen, &google,
- &yahoo_fr,
- &bing,
- &duckduckgo,
- @@ -890,7 +890,7 @@ const PrepopulatedEngine* const engines_TN[] = {
-
- // Turkey
- const PrepopulatedEngine* const engines_TR[] = {
- - &google,
- + &googleen, &google,
- &yandex_tr,
- &yahoo_tr,
- &bing,
- @@ -899,7 +899,7 @@ const PrepopulatedEngine* const engines_TR[] = {
-
- // Trinidad and Tobago
- const PrepopulatedEngine* const engines_TT[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -908,7 +908,7 @@ const PrepopulatedEngine* const engines_TT[] = {
-
- // Taiwan
- const PrepopulatedEngine* const engines_TW[] = {
- - &google,
- + &googleen, &google,
- &yahoo_tw,
- &bing,
- &baidu,
- @@ -917,7 +917,7 @@ const PrepopulatedEngine* const engines_TW[] = {
-
- // Tanzania
- const PrepopulatedEngine* const engines_TZ[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -926,7 +926,7 @@ const PrepopulatedEngine* const engines_TZ[] = {
-
- // Ukraine
- const PrepopulatedEngine* const engines_UA[] = {
- - &google,
- + &googleen, &google,
- &yandex_ua,
- &bing,
- &duckduckgo,
- @@ -935,7 +935,7 @@ const PrepopulatedEngine* const engines_UA[] = {
-
- // United States
- const PrepopulatedEngine* const engines_US[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -944,7 +944,7 @@ const PrepopulatedEngine* const engines_US[] = {
-
- // Uruguay
- const PrepopulatedEngine* const engines_UY[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -953,7 +953,7 @@ const PrepopulatedEngine* const engines_UY[] = {
-
- // Venezuela
- const PrepopulatedEngine* const engines_VE[] = {
- - &google,
- + &googleen, &google,
- &yahoo_ve,
- &bing,
- &duckduckgo,
- @@ -962,7 +962,7 @@ const PrepopulatedEngine* const engines_VE[] = {
-
- // Vietnam
- const PrepopulatedEngine* const engines_VN[] = {
- - &google,
- + &googleen, &google,
- &coccoc,
- &bing,
- &yahoo,
- @@ -971,7 +971,7 @@ const PrepopulatedEngine* const engines_VN[] = {
-
- // Yemen
- const PrepopulatedEngine* const engines_YE[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &yandex_ru,
- @@ -980,7 +980,7 @@ const PrepopulatedEngine* const engines_YE[] = {
-
- // South Africa
- const PrepopulatedEngine* const engines_ZA[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- @@ -989,7 +989,7 @@ const PrepopulatedEngine* const engines_ZA[] = {
-
- // Zimbabwe
- const PrepopulatedEngine* const engines_ZW[] = {
- - &google,
- + &googleen, &google,
- &bing,
- &yahoo,
- &duckduckgo,
- --
- 2.20.1
|