Add-English-only-search-engine.patch 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  1. From: csagan5 <32685696+csagan5@users.noreply.github.com>
  2. Date: Mon, 11 Dec 2017 22:42:11 +0100
  3. Subject: Add English-only search engine
  4. Add a Google search engine that forces languages to English,
  5. disable from all its searches RLZ and field experiments querystring parameters.
  6. ---
  7. .../search_engines/prepopulated_engines.json | 21 ++
  8. .../search_engines/search_engine_type.h | 1 +
  9. .../template_url_prepopulate_data.cc | 216 +++++++++---------
  10. 3 files changed, 130 insertions(+), 108 deletions(-)
  11. diff --git a/components/search_engines/prepopulated_engines.json b/components/search_engines/prepopulated_engines.json
  12. --- a/components/search_engines/prepopulated_engines.json
  13. +++ b/components/search_engines/prepopulated_engines.json
  14. @@ -133,6 +133,27 @@
  15. "id": 1
  16. },
  17. + "googleen": {
  18. + "name": "Google in English",
  19. + "keyword": "googleen",
  20. + "favicon_url": "https://www.google.com/favicon.ico",
  21. + "search_url": "{google:baseURL}search?q={searchTerms}&{google:originalQueryForSuggestion}{google:iOSSearchLanguage}{google:searchClient}{google:contextualSearchVersion}ie={inputEncoding}&hl=en",
  22. + "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",
  23. + "image_url": "{google:baseURL}searchbyimage/upload?hl=en",
  24. + "new_tab_url": "{google:baseURL}_/chrome/newtab?hl=en&ie={inputEncoding}",
  25. + "contextual_search_url": "{google:baseURL}_/contextualsearch?{google:contextualSearchVersion}{google:contextualSearchContextData}&hl=en",
  26. + "image_url_post_params": "encoded_image={google:imageThumbnail},image_url={google:imageURL},sbisrc={google:imageSearchSource},original_width={google:imageOriginalWidth},original_height={google:imageOriginalHeight}",
  27. + "alternate_urls": [
  28. + "{google:baseURL}?hl=en#q={searchTerms}",
  29. + "{google:baseURL}search?hl=en#q={searchTerms}",
  30. + "{google:baseURL}webhp?hl=en#q={searchTerms}",
  31. + "{google:baseURL}s?hl=en#q={searchTerms}",
  32. + "{google:baseURL}s?hl=en&q={searchTerms}"
  33. + ],
  34. + "type": "SEARCH_ENGINE_GOOGLE_EN",
  35. + "id": 13
  36. + },
  37. +
  38. "mail_ru": {
  39. "name": "@MAIL.RU",
  40. "keyword": "mail.ru",
  41. diff --git a/components/search_engines/search_engine_type.h b/components/search_engines/search_engine_type.h
  42. --- a/components/search_engines/search_engine_type.h
  43. +++ b/components/search_engines/search_engine_type.h
  44. @@ -74,6 +74,7 @@ enum SearchEngineType {
  45. SEARCH_ENGINE_OCEANHERO = 57,
  46. SEARCH_ENGINE_PRIVACYWALL = 58,
  47. SEARCH_ENGINE_ECOSIA = 59,
  48. + SEARCH_ENGINE_GOOGLE_EN,
  49. SEARCH_ENGINE_MAX // Bounding value needed for UMA histogram macro.
  50. };
  51. diff --git a/components/search_engines/template_url_prepopulate_data.cc b/components/search_engines/template_url_prepopulate_data.cc
  52. --- a/components/search_engines/template_url_prepopulate_data.cc
  53. +++ b/components/search_engines/template_url_prepopulate_data.cc
  54. @@ -29,7 +29,7 @@ namespace {
  55. // Default (for countries with no better engine set)
  56. const PrepopulatedEngine* const engines_default[] = {
  57. - &google,
  58. + &googleen, &google,
  59. &bing,
  60. &yahoo,
  61. };
  62. @@ -38,7 +38,7 @@ const PrepopulatedEngine* const engines_default[] = {
  63. // Engine selection by country ------------------------------------------------
  64. // United Arab Emirates
  65. const PrepopulatedEngine* const engines_AE[] = {
  66. - &google,
  67. + &googleen, &google,
  68. &bing,
  69. &yahoo,
  70. &duckduckgo,
  71. @@ -47,7 +47,7 @@ const PrepopulatedEngine* const engines_AE[] = {
  72. // Albania
  73. const PrepopulatedEngine* const engines_AL[] = {
  74. - &google,
  75. + &googleen, &google,
  76. &bing,
  77. &yahoo,
  78. &duckduckgo,
  79. @@ -56,7 +56,7 @@ const PrepopulatedEngine* const engines_AL[] = {
  80. // Argentina
  81. const PrepopulatedEngine* const engines_AR[] = {
  82. - &google,
  83. + &googleen, &google,
  84. &bing,
  85. &yahoo_ar,
  86. &duckduckgo,
  87. @@ -65,7 +65,7 @@ const PrepopulatedEngine* const engines_AR[] = {
  88. // Austria
  89. const PrepopulatedEngine* const engines_AT[] = {
  90. - &google,
  91. + &googleen, &google,
  92. &bing,
  93. &duckduckgo,
  94. &yahoo_at,
  95. @@ -74,7 +74,7 @@ const PrepopulatedEngine* const engines_AT[] = {
  96. // Australia
  97. const PrepopulatedEngine* const engines_AU[] = {
  98. - &google,
  99. + &googleen, &google,
  100. &bing,
  101. &yahoo_au,
  102. &duckduckgo,
  103. @@ -83,7 +83,7 @@ const PrepopulatedEngine* const engines_AU[] = {
  104. // Bosnia and Herzegovina
  105. const PrepopulatedEngine* const engines_BA[] = {
  106. - &google,
  107. + &googleen, &google,
  108. &bing,
  109. &yahoo,
  110. &duckduckgo,
  111. @@ -91,7 +91,7 @@ const PrepopulatedEngine* const engines_BA[] = {
  112. // Belgium
  113. const PrepopulatedEngine* const engines_BE[] = {
  114. - &google,
  115. + &googleen, &google,
  116. &bing,
  117. &yahoo,
  118. &ecosia,
  119. @@ -100,7 +100,7 @@ const PrepopulatedEngine* const engines_BE[] = {
  120. // Bulgaria
  121. const PrepopulatedEngine* const engines_BG[] = {
  122. - &google,
  123. + &googleen, &google,
  124. &bing,
  125. &yahoo,
  126. &duckduckgo,
  127. @@ -109,7 +109,7 @@ const PrepopulatedEngine* const engines_BG[] = {
  128. // Bahrain
  129. const PrepopulatedEngine* const engines_BH[] = {
  130. - &google,
  131. + &googleen, &google,
  132. &bing,
  133. &yahoo,
  134. &duckduckgo,
  135. @@ -118,7 +118,7 @@ const PrepopulatedEngine* const engines_BH[] = {
  136. // Burundi
  137. const PrepopulatedEngine* const engines_BI[] = {
  138. - &google,
  139. + &googleen, &google,
  140. &bing,
  141. &yahoo,
  142. &duckduckgo,
  143. @@ -127,7 +127,7 @@ const PrepopulatedEngine* const engines_BI[] = {
  144. // Brunei
  145. const PrepopulatedEngine* const engines_BN[] = {
  146. - &google,
  147. + &googleen, &google,
  148. &bing,
  149. &yahoo,
  150. &duckduckgo,
  151. @@ -136,7 +136,7 @@ const PrepopulatedEngine* const engines_BN[] = {
  152. // Bolivia
  153. const PrepopulatedEngine* const engines_BO[] = {
  154. - &google,
  155. + &googleen, &google,
  156. &bing,
  157. &yahoo,
  158. &duckduckgo,
  159. @@ -145,7 +145,7 @@ const PrepopulatedEngine* const engines_BO[] = {
  160. // Brazil
  161. const PrepopulatedEngine* const engines_BR[] = {
  162. - &google,
  163. + &googleen, &google,
  164. &bing,
  165. &yahoo_br,
  166. &duckduckgo,
  167. @@ -154,7 +154,7 @@ const PrepopulatedEngine* const engines_BR[] = {
  168. // Belarus
  169. const PrepopulatedEngine* const engines_BY[] = {
  170. - &google,
  171. + &googleen, &google,
  172. &yandex_by,
  173. &mail_ru,
  174. &bing,
  175. @@ -163,7 +163,7 @@ const PrepopulatedEngine* const engines_BY[] = {
  176. // Belize
  177. const PrepopulatedEngine* const engines_BZ[] = {
  178. - &google,
  179. + &googleen, &google,
  180. &bing,
  181. &yahoo,
  182. &duckduckgo,
  183. @@ -172,7 +172,7 @@ const PrepopulatedEngine* const engines_BZ[] = {
  184. // Canada
  185. const PrepopulatedEngine* const engines_CA[] = {
  186. - &google,
  187. + &googleen, &google,
  188. &bing,
  189. &yahoo_ca,
  190. &duckduckgo,
  191. @@ -181,7 +181,7 @@ const PrepopulatedEngine* const engines_CA[] = {
  192. // Switzerland
  193. const PrepopulatedEngine* const engines_CH[] = {
  194. - &google,
  195. + &googleen, &google,
  196. &bing,
  197. &duckduckgo,
  198. &ecosia,
  199. @@ -190,7 +190,7 @@ const PrepopulatedEngine* const engines_CH[] = {
  200. // Chile
  201. const PrepopulatedEngine* const engines_CL[] = {
  202. - &google,
  203. + &googleen, &google,
  204. &bing,
  205. &yahoo_es,
  206. &duckduckgo,
  207. @@ -201,14 +201,14 @@ const PrepopulatedEngine* const engines_CL[] = {
  208. const PrepopulatedEngine* const engines_CN[] = {
  209. &baidu,
  210. &sogou,
  211. - &google,
  212. + &googleen, &google,
  213. &bing,
  214. &so_360,
  215. };
  216. // Colombia
  217. const PrepopulatedEngine* const engines_CO[] = {
  218. - &google,
  219. + &googleen, &google,
  220. &bing,
  221. &yahoo_es,
  222. &ecosia,
  223. @@ -217,7 +217,7 @@ const PrepopulatedEngine* const engines_CO[] = {
  224. // Costa Rica
  225. const PrepopulatedEngine* const engines_CR[] = {
  226. - &google,
  227. + &googleen, &google,
  228. &bing,
  229. &yahoo,
  230. &duckduckgo,
  231. @@ -226,7 +226,7 @@ const PrepopulatedEngine* const engines_CR[] = {
  232. // Czech Republic
  233. const PrepopulatedEngine* const engines_CZ[] = {
  234. - &google,
  235. + &googleen, &google,
  236. &seznam_cz,
  237. &bing,
  238. &yahoo,
  239. @@ -235,7 +235,7 @@ const PrepopulatedEngine* const engines_CZ[] = {
  240. // Germany
  241. const PrepopulatedEngine* const engines_DE[] = {
  242. - &google,
  243. + &googleen, &google,
  244. &bing,
  245. &duckduckgo,
  246. &ecosia,
  247. @@ -244,7 +244,7 @@ const PrepopulatedEngine* const engines_DE[] = {
  248. // Denmark
  249. const PrepopulatedEngine* const engines_DK[] = {
  250. - &google,
  251. + &googleen, &google,
  252. &bing,
  253. &yahoo_dk,
  254. &duckduckgo,
  255. @@ -253,7 +253,7 @@ const PrepopulatedEngine* const engines_DK[] = {
  256. // Dominican Republic
  257. const PrepopulatedEngine* const engines_DO[] = {
  258. - &google,
  259. + &googleen, &google,
  260. &bing,
  261. &yahoo,
  262. &duckduckgo,
  263. @@ -262,7 +262,7 @@ const PrepopulatedEngine* const engines_DO[] = {
  264. // Algeria
  265. const PrepopulatedEngine* const engines_DZ[] = {
  266. - &google,
  267. + &googleen, &google,
  268. &yahoo_uk,
  269. &bing,
  270. &yandex_ru,
  271. @@ -271,7 +271,7 @@ const PrepopulatedEngine* const engines_DZ[] = {
  272. // Ecuador
  273. const PrepopulatedEngine* const engines_EC[] = {
  274. - &google,
  275. + &googleen, &google,
  276. &bing,
  277. &yahoo,
  278. &duckduckgo,
  279. @@ -280,7 +280,7 @@ const PrepopulatedEngine* const engines_EC[] = {
  280. // Estonia
  281. const PrepopulatedEngine* const engines_EE[] = {
  282. - &google,
  283. + &googleen, &google,
  284. &bing,
  285. &yandex_ru,
  286. &yahoo,
  287. @@ -289,7 +289,7 @@ const PrepopulatedEngine* const engines_EE[] = {
  288. // Egypt
  289. const PrepopulatedEngine* const engines_EG[] = {
  290. - &google,
  291. + &googleen, &google,
  292. &yahoo,
  293. &bing,
  294. &yandex_com,
  295. @@ -298,7 +298,7 @@ const PrepopulatedEngine* const engines_EG[] = {
  296. // Spain
  297. const PrepopulatedEngine* const engines_ES[] = {
  298. - &google,
  299. + &googleen, &google,
  300. &bing,
  301. &yahoo_es,
  302. &duckduckgo,
  303. @@ -307,7 +307,7 @@ const PrepopulatedEngine* const engines_ES[] = {
  304. // Finland
  305. const PrepopulatedEngine* const engines_FI[] = {
  306. - &google,
  307. + &googleen, &google,
  308. &bing,
  309. &yahoo_fi,
  310. &duckduckgo,
  311. @@ -316,7 +316,7 @@ const PrepopulatedEngine* const engines_FI[] = {
  312. // Faroe Islands
  313. const PrepopulatedEngine* const engines_FO[] = {
  314. - &google,
  315. + &googleen, &google,
  316. &bing,
  317. &yahoo_dk,
  318. &duckduckgo,
  319. @@ -325,7 +325,7 @@ const PrepopulatedEngine* const engines_FO[] = {
  320. // France
  321. const PrepopulatedEngine* const engines_FR[] = {
  322. - &google,
  323. + &googleen, &google,
  324. &bing,
  325. &yahoo_fr,
  326. &qwant,
  327. @@ -334,7 +334,7 @@ const PrepopulatedEngine* const engines_FR[] = {
  328. // United Kingdom
  329. const PrepopulatedEngine* const engines_GB[] = {
  330. - &google,
  331. + &googleen, &google,
  332. &bing,
  333. &yahoo_uk,
  334. &duckduckgo,
  335. @@ -343,7 +343,7 @@ const PrepopulatedEngine* const engines_GB[] = {
  336. // Greece
  337. const PrepopulatedEngine* const engines_GR[] = {
  338. - &google,
  339. + &googleen, &google,
  340. &bing,
  341. &yahoo,
  342. &duckduckgo,
  343. @@ -352,7 +352,7 @@ const PrepopulatedEngine* const engines_GR[] = {
  344. // Guatemala
  345. const PrepopulatedEngine* const engines_GT[] = {
  346. - &google,
  347. + &googleen, &google,
  348. &bing,
  349. &yahoo,
  350. &duckduckgo,
  351. @@ -361,7 +361,7 @@ const PrepopulatedEngine* const engines_GT[] = {
  352. // Hong Kong
  353. const PrepopulatedEngine* const engines_HK[] = {
  354. - &google,
  355. + &googleen, &google,
  356. &yahoo_hk,
  357. &bing,
  358. &baidu,
  359. @@ -370,7 +370,7 @@ const PrepopulatedEngine* const engines_HK[] = {
  360. // Honduras
  361. const PrepopulatedEngine* const engines_HN[] = {
  362. - &google,
  363. + &googleen, &google,
  364. &bing,
  365. &yahoo,
  366. &duckduckgo,
  367. @@ -379,7 +379,7 @@ const PrepopulatedEngine* const engines_HN[] = {
  368. // Croatia
  369. const PrepopulatedEngine* const engines_HR[] = {
  370. - &google,
  371. + &googleen, &google,
  372. &bing,
  373. &yahoo,
  374. &duckduckgo,
  375. @@ -388,7 +388,7 @@ const PrepopulatedEngine* const engines_HR[] = {
  376. // Hungary
  377. const PrepopulatedEngine* const engines_HU[] = {
  378. - &google,
  379. + &googleen, &google,
  380. &bing,
  381. &yahoo,
  382. &duckduckgo,
  383. @@ -397,7 +397,7 @@ const PrepopulatedEngine* const engines_HU[] = {
  384. // Indonesia
  385. const PrepopulatedEngine* const engines_ID[] = {
  386. - &google,
  387. + &googleen, &google,
  388. &yahoo_id,
  389. &bing,
  390. &duckduckgo,
  391. @@ -406,7 +406,7 @@ const PrepopulatedEngine* const engines_ID[] = {
  392. // Ireland
  393. const PrepopulatedEngine* const engines_IE[] = {
  394. - &google,
  395. + &googleen, &google,
  396. &bing,
  397. &yahoo,
  398. &duckduckgo,
  399. @@ -415,7 +415,7 @@ const PrepopulatedEngine* const engines_IE[] = {
  400. // Israel
  401. const PrepopulatedEngine* const engines_IL[] = {
  402. - &google,
  403. + &googleen, &google,
  404. &bing,
  405. &yandex_ru,
  406. &yahoo,
  407. @@ -424,7 +424,7 @@ const PrepopulatedEngine* const engines_IL[] = {
  408. // India
  409. const PrepopulatedEngine* const engines_IN[] = {
  410. - &google,
  411. + &googleen, &google,
  412. &bing,
  413. &yahoo_in,
  414. &duckduckgo,
  415. @@ -433,7 +433,7 @@ const PrepopulatedEngine* const engines_IN[] = {
  416. // Iraq
  417. const PrepopulatedEngine* const engines_IQ[] = {
  418. - &google,
  419. + &googleen, &google,
  420. &bing,
  421. &yahoo_uk,
  422. &yandex_com,
  423. @@ -442,7 +442,7 @@ const PrepopulatedEngine* const engines_IQ[] = {
  424. // Iran
  425. const PrepopulatedEngine* const engines_IR[] = {
  426. - &google,
  427. + &googleen, &google,
  428. &bing,
  429. &yahoo,
  430. &ask,
  431. @@ -451,7 +451,7 @@ const PrepopulatedEngine* const engines_IR[] = {
  432. // Iceland
  433. const PrepopulatedEngine* const engines_IS[] = {
  434. - &google,
  435. + &googleen, &google,
  436. &bing,
  437. &yahoo,
  438. &duckduckgo,
  439. @@ -460,7 +460,7 @@ const PrepopulatedEngine* const engines_IS[] = {
  440. // Italy
  441. const PrepopulatedEngine* const engines_IT[] = {
  442. - &google,
  443. + &googleen, &google,
  444. &bing,
  445. &yahoo,
  446. &duckduckgo,
  447. @@ -469,7 +469,7 @@ const PrepopulatedEngine* const engines_IT[] = {
  448. // Jamaica
  449. const PrepopulatedEngine* const engines_JM[] = {
  450. - &google,
  451. + &googleen, &google,
  452. &bing,
  453. &yahoo,
  454. &duckduckgo,
  455. @@ -478,7 +478,7 @@ const PrepopulatedEngine* const engines_JM[] = {
  456. // Jordan
  457. const PrepopulatedEngine* const engines_JO[] = {
  458. - &google,
  459. + &googleen, &google,
  460. &bing,
  461. &yahoo,
  462. &duckduckgo,
  463. @@ -487,7 +487,7 @@ const PrepopulatedEngine* const engines_JO[] = {
  464. // Japan
  465. const PrepopulatedEngine* const engines_JP[] = {
  466. - &google,
  467. + &googleen, &google,
  468. &yahoo_jp,
  469. &bing,
  470. &baidu,
  471. @@ -496,7 +496,7 @@ const PrepopulatedEngine* const engines_JP[] = {
  472. // Kenya
  473. const PrepopulatedEngine* const engines_KE[] = {
  474. - &google,
  475. + &googleen, &google,
  476. &bing,
  477. &yahoo,
  478. &duckduckgo,
  479. @@ -505,7 +505,7 @@ const PrepopulatedEngine* const engines_KE[] = {
  480. // South Korea
  481. const PrepopulatedEngine* const engines_KR[] = {
  482. - &google,
  483. + &googleen, &google,
  484. &naver,
  485. &bing,
  486. &daum,
  487. @@ -514,7 +514,7 @@ const PrepopulatedEngine* const engines_KR[] = {
  488. // Kuwait
  489. const PrepopulatedEngine* const engines_KW[] = {
  490. - &google,
  491. + &googleen, &google,
  492. &bing,
  493. &yahoo,
  494. &duckduckgo,
  495. @@ -523,7 +523,7 @@ const PrepopulatedEngine* const engines_KW[] = {
  496. // Kazakhstan
  497. const PrepopulatedEngine* const engines_KZ[] = {
  498. - &google,
  499. + &googleen, &google,
  500. &yandex_kz,
  501. &mail_ru,
  502. &bing,
  503. @@ -532,7 +532,7 @@ const PrepopulatedEngine* const engines_KZ[] = {
  504. // Lebanon
  505. const PrepopulatedEngine* const engines_LB[] = {
  506. - &google,
  507. + &googleen, &google,
  508. &bing,
  509. &yahoo,
  510. &duckduckgo,
  511. @@ -541,7 +541,7 @@ const PrepopulatedEngine* const engines_LB[] = {
  512. // Liechtenstein
  513. const PrepopulatedEngine* const engines_LI[] = {
  514. - &google,
  515. + &googleen, &google,
  516. &bing,
  517. &duckduckgo,
  518. &yahoo,
  519. @@ -550,7 +550,7 @@ const PrepopulatedEngine* const engines_LI[] = {
  520. // Lithuania
  521. const PrepopulatedEngine* const engines_LT[] = {
  522. - &google,
  523. + &googleen, &google,
  524. &bing,
  525. &yahoo,
  526. &yandex_ru,
  527. @@ -559,7 +559,7 @@ const PrepopulatedEngine* const engines_LT[] = {
  528. // Luxembourg
  529. const PrepopulatedEngine* const engines_LU[] = {
  530. - &google,
  531. + &googleen, &google,
  532. &bing,
  533. &duckduckgo,
  534. &yahoo,
  535. @@ -568,7 +568,7 @@ const PrepopulatedEngine* const engines_LU[] = {
  536. // Latvia
  537. const PrepopulatedEngine* const engines_LV[] = {
  538. - &google,
  539. + &googleen, &google,
  540. &bing,
  541. &yandex_ru,
  542. &yahoo,
  543. @@ -577,7 +577,7 @@ const PrepopulatedEngine* const engines_LV[] = {
  544. // Libya
  545. const PrepopulatedEngine* const engines_LY[] = {
  546. - &google,
  547. + &googleen, &google,
  548. &bing,
  549. &yahoo,
  550. &yandex_com,
  551. @@ -586,7 +586,7 @@ const PrepopulatedEngine* const engines_LY[] = {
  552. // Morocco
  553. const PrepopulatedEngine* const engines_MA[] = {
  554. - &google,
  555. + &googleen, &google,
  556. &yahoo_fr,
  557. &bing,
  558. &yandex_com,
  559. @@ -595,7 +595,7 @@ const PrepopulatedEngine* const engines_MA[] = {
  560. // Monaco
  561. const PrepopulatedEngine* const engines_MC[] = {
  562. - &google,
  563. + &googleen, &google,
  564. &bing,
  565. &yahoo,
  566. &duckduckgo,
  567. @@ -604,7 +604,7 @@ const PrepopulatedEngine* const engines_MC[] = {
  568. // Moldova
  569. const PrepopulatedEngine* const engines_MD[] = {
  570. - &google,
  571. + &googleen, &google,
  572. &yandex_ru,
  573. &mail_ru,
  574. &bing,
  575. @@ -613,7 +613,7 @@ const PrepopulatedEngine* const engines_MD[] = {
  576. // Montenegro
  577. const PrepopulatedEngine* const engines_ME[] = {
  578. - &google,
  579. + &googleen, &google,
  580. &bing,
  581. &yahoo,
  582. &yandex_ru,
  583. @@ -622,7 +622,7 @@ const PrepopulatedEngine* const engines_ME[] = {
  584. // Macedonia
  585. const PrepopulatedEngine* const engines_MK[] = {
  586. - &google,
  587. + &googleen, &google,
  588. &bing,
  589. &yahoo,
  590. &duckduckgo,
  591. @@ -631,7 +631,7 @@ const PrepopulatedEngine* const engines_MK[] = {
  592. // Mexico
  593. const PrepopulatedEngine* const engines_MX[] = {
  594. - &google,
  595. + &googleen, &google,
  596. &bing,
  597. &yahoo_mx,
  598. &duckduckgo,
  599. @@ -640,7 +640,7 @@ const PrepopulatedEngine* const engines_MX[] = {
  600. // Malaysia
  601. const PrepopulatedEngine* const engines_MY[] = {
  602. - &google,
  603. + &googleen, &google,
  604. &bing,
  605. &yahoo_my,
  606. &duckduckgo,
  607. @@ -649,7 +649,7 @@ const PrepopulatedEngine* const engines_MY[] = {
  608. // Nicaragua
  609. const PrepopulatedEngine* const engines_NI[] = {
  610. - &google,
  611. + &googleen, &google,
  612. &bing,
  613. &yahoo,
  614. &duckduckgo,
  615. @@ -658,7 +658,7 @@ const PrepopulatedEngine* const engines_NI[] = {
  616. // Netherlands
  617. const PrepopulatedEngine* const engines_NL[] = {
  618. - &google,
  619. + &googleen, &google,
  620. &bing,
  621. &duckduckgo,
  622. &yahoo_nl,
  623. @@ -667,7 +667,7 @@ const PrepopulatedEngine* const engines_NL[] = {
  624. // Norway
  625. const PrepopulatedEngine* const engines_NO[] = {
  626. - &google,
  627. + &googleen, &google,
  628. &bing,
  629. &yahoo,
  630. &duckduckgo,
  631. @@ -676,7 +676,7 @@ const PrepopulatedEngine* const engines_NO[] = {
  632. // New Zealand
  633. const PrepopulatedEngine* const engines_NZ[] = {
  634. - &google,
  635. + &googleen, &google,
  636. &bing,
  637. &yahoo_nz,
  638. &duckduckgo,
  639. @@ -685,7 +685,7 @@ const PrepopulatedEngine* const engines_NZ[] = {
  640. // Oman
  641. const PrepopulatedEngine* const engines_OM[] = {
  642. - &google,
  643. + &googleen, &google,
  644. &bing,
  645. &yahoo,
  646. &duckduckgo,
  647. @@ -694,7 +694,7 @@ const PrepopulatedEngine* const engines_OM[] = {
  648. // Panama
  649. const PrepopulatedEngine* const engines_PA[] = {
  650. - &google,
  651. + &googleen, &google,
  652. &bing,
  653. &yahoo,
  654. &duckduckgo,
  655. @@ -703,7 +703,7 @@ const PrepopulatedEngine* const engines_PA[] = {
  656. // Peru
  657. const PrepopulatedEngine* const engines_PE[] = {
  658. - &google,
  659. + &googleen, &google,
  660. &bing,
  661. &yahoo_es,
  662. &ecosia,
  663. @@ -712,7 +712,7 @@ const PrepopulatedEngine* const engines_PE[] = {
  664. // Philippines
  665. const PrepopulatedEngine* const engines_PH[] = {
  666. - &google,
  667. + &googleen, &google,
  668. &bing,
  669. &yahoo,
  670. &ecosia,
  671. @@ -721,7 +721,7 @@ const PrepopulatedEngine* const engines_PH[] = {
  672. // Pakistan
  673. const PrepopulatedEngine* const engines_PK[] = {
  674. - &google,
  675. + &googleen, &google,
  676. &yahoo,
  677. &bing,
  678. &duckduckgo,
  679. @@ -730,7 +730,7 @@ const PrepopulatedEngine* const engines_PK[] = {
  680. // Poland
  681. const PrepopulatedEngine* const engines_PL[] = {
  682. - &google,
  683. + &googleen, &google,
  684. &bing,
  685. &yahoo,
  686. &duckduckgo,
  687. @@ -738,7 +738,7 @@ const PrepopulatedEngine* const engines_PL[] = {
  688. // Puerto Rico
  689. const PrepopulatedEngine* const engines_PR[] = {
  690. - &google,
  691. + &googleen, &google,
  692. &bing,
  693. &yahoo,
  694. &duckduckgo,
  695. @@ -747,7 +747,7 @@ const PrepopulatedEngine* const engines_PR[] = {
  696. // Portugal
  697. const PrepopulatedEngine* const engines_PT[] = {
  698. - &google,
  699. + &googleen, &google,
  700. &bing,
  701. &yahoo,
  702. &duckduckgo,
  703. @@ -756,7 +756,7 @@ const PrepopulatedEngine* const engines_PT[] = {
  704. // Paraguay
  705. const PrepopulatedEngine* const engines_PY[] = {
  706. - &google,
  707. + &googleen, &google,
  708. &bing,
  709. &yahoo,
  710. &duckduckgo,
  711. @@ -765,7 +765,7 @@ const PrepopulatedEngine* const engines_PY[] = {
  712. // Qatar
  713. const PrepopulatedEngine* const engines_QA[] = {
  714. - &google,
  715. + &googleen, &google,
  716. &bing,
  717. &yahoo,
  718. &duckduckgo,
  719. @@ -774,7 +774,7 @@ const PrepopulatedEngine* const engines_QA[] = {
  720. // Romania
  721. const PrepopulatedEngine* const engines_RO[] = {
  722. - &google,
  723. + &googleen, &google,
  724. &bing,
  725. &yahoo,
  726. &duckduckgo,
  727. @@ -783,7 +783,7 @@ const PrepopulatedEngine* const engines_RO[] = {
  728. // Serbia
  729. const PrepopulatedEngine* const engines_RS[] = {
  730. - &google,
  731. + &googleen, &google,
  732. &bing,
  733. &yahoo,
  734. &duckduckgo,
  735. @@ -792,7 +792,7 @@ const PrepopulatedEngine* const engines_RS[] = {
  736. // Russia
  737. const PrepopulatedEngine* const engines_RU[] = {
  738. - &google,
  739. + &googleen, &google,
  740. &yandex_ru,
  741. &mail_ru,
  742. &bing,
  743. @@ -801,7 +801,7 @@ const PrepopulatedEngine* const engines_RU[] = {
  744. // Rwanda
  745. const PrepopulatedEngine* const engines_RW[] = {
  746. - &google,
  747. + &googleen, &google,
  748. &bing,
  749. &yahoo,
  750. &duckduckgo,
  751. @@ -810,7 +810,7 @@ const PrepopulatedEngine* const engines_RW[] = {
  752. // Saudi Arabia
  753. const PrepopulatedEngine* const engines_SA[] = {
  754. - &google,
  755. + &googleen, &google,
  756. &bing,
  757. &yahoo,
  758. &yandex_com,
  759. @@ -819,7 +819,7 @@ const PrepopulatedEngine* const engines_SA[] = {
  760. // Sweden
  761. const PrepopulatedEngine* const engines_SE[] = {
  762. - &google,
  763. + &googleen, &google,
  764. &bing,
  765. &yahoo_se,
  766. &duckduckgo,
  767. @@ -828,7 +828,7 @@ const PrepopulatedEngine* const engines_SE[] = {
  768. // Singapore
  769. const PrepopulatedEngine* const engines_SG[] = {
  770. - &google,
  771. + &googleen, &google,
  772. &bing,
  773. &yahoo,
  774. &baidu,
  775. @@ -837,7 +837,7 @@ const PrepopulatedEngine* const engines_SG[] = {
  776. // Slovenia
  777. const PrepopulatedEngine* const engines_SI[] = {
  778. - &google,
  779. + &googleen, &google,
  780. &bing,
  781. &duckduckgo,
  782. &yahoo,
  783. @@ -845,7 +845,7 @@ const PrepopulatedEngine* const engines_SI[] = {
  784. // Slovakia
  785. const PrepopulatedEngine* const engines_SK[] = {
  786. - &google,
  787. + &googleen, &google,
  788. &bing,
  789. &yahoo,
  790. &duckduckgo,
  791. @@ -854,7 +854,7 @@ const PrepopulatedEngine* const engines_SK[] = {
  792. // El Salvador
  793. const PrepopulatedEngine* const engines_SV[] = {
  794. - &google,
  795. + &googleen, &google,
  796. &bing,
  797. &yahoo,
  798. &duckduckgo,
  799. @@ -863,7 +863,7 @@ const PrepopulatedEngine* const engines_SV[] = {
  800. // Syria
  801. const PrepopulatedEngine* const engines_SY[] = {
  802. - &google,
  803. + &googleen, &google,
  804. &bing,
  805. &yahoo,
  806. &yandex_ru,
  807. @@ -872,7 +872,7 @@ const PrepopulatedEngine* const engines_SY[] = {
  808. // Thailand
  809. const PrepopulatedEngine* const engines_TH[] = {
  810. - &google,
  811. + &googleen, &google,
  812. &bing,
  813. &yahoo,
  814. &duckduckgo,
  815. @@ -881,7 +881,7 @@ const PrepopulatedEngine* const engines_TH[] = {
  816. // Tunisia
  817. const PrepopulatedEngine* const engines_TN[] = {
  818. - &google,
  819. + &googleen, &google,
  820. &yahoo_fr,
  821. &bing,
  822. &duckduckgo,
  823. @@ -890,7 +890,7 @@ const PrepopulatedEngine* const engines_TN[] = {
  824. // Turkey
  825. const PrepopulatedEngine* const engines_TR[] = {
  826. - &google,
  827. + &googleen, &google,
  828. &yandex_tr,
  829. &yahoo_tr,
  830. &bing,
  831. @@ -899,7 +899,7 @@ const PrepopulatedEngine* const engines_TR[] = {
  832. // Trinidad and Tobago
  833. const PrepopulatedEngine* const engines_TT[] = {
  834. - &google,
  835. + &googleen, &google,
  836. &bing,
  837. &yahoo,
  838. &duckduckgo,
  839. @@ -908,7 +908,7 @@ const PrepopulatedEngine* const engines_TT[] = {
  840. // Taiwan
  841. const PrepopulatedEngine* const engines_TW[] = {
  842. - &google,
  843. + &googleen, &google,
  844. &yahoo_tw,
  845. &bing,
  846. &baidu,
  847. @@ -917,7 +917,7 @@ const PrepopulatedEngine* const engines_TW[] = {
  848. // Tanzania
  849. const PrepopulatedEngine* const engines_TZ[] = {
  850. - &google,
  851. + &googleen, &google,
  852. &bing,
  853. &yahoo,
  854. &duckduckgo,
  855. @@ -926,7 +926,7 @@ const PrepopulatedEngine* const engines_TZ[] = {
  856. // Ukraine
  857. const PrepopulatedEngine* const engines_UA[] = {
  858. - &google,
  859. + &googleen, &google,
  860. &yandex_ua,
  861. &bing,
  862. &duckduckgo,
  863. @@ -935,7 +935,7 @@ const PrepopulatedEngine* const engines_UA[] = {
  864. // United States
  865. const PrepopulatedEngine* const engines_US[] = {
  866. - &google,
  867. + &googleen, &google,
  868. &bing,
  869. &yahoo,
  870. &duckduckgo,
  871. @@ -944,7 +944,7 @@ const PrepopulatedEngine* const engines_US[] = {
  872. // Uruguay
  873. const PrepopulatedEngine* const engines_UY[] = {
  874. - &google,
  875. + &googleen, &google,
  876. &bing,
  877. &yahoo,
  878. &duckduckgo,
  879. @@ -953,7 +953,7 @@ const PrepopulatedEngine* const engines_UY[] = {
  880. // Venezuela
  881. const PrepopulatedEngine* const engines_VE[] = {
  882. - &google,
  883. + &googleen, &google,
  884. &yahoo_ve,
  885. &bing,
  886. &duckduckgo,
  887. @@ -962,7 +962,7 @@ const PrepopulatedEngine* const engines_VE[] = {
  888. // Vietnam
  889. const PrepopulatedEngine* const engines_VN[] = {
  890. - &google,
  891. + &googleen, &google,
  892. &coccoc,
  893. &bing,
  894. &yahoo,
  895. @@ -971,7 +971,7 @@ const PrepopulatedEngine* const engines_VN[] = {
  896. // Yemen
  897. const PrepopulatedEngine* const engines_YE[] = {
  898. - &google,
  899. + &googleen, &google,
  900. &bing,
  901. &yahoo,
  902. &yandex_ru,
  903. @@ -980,7 +980,7 @@ const PrepopulatedEngine* const engines_YE[] = {
  904. // South Africa
  905. const PrepopulatedEngine* const engines_ZA[] = {
  906. - &google,
  907. + &googleen, &google,
  908. &bing,
  909. &yahoo,
  910. &duckduckgo,
  911. @@ -989,7 +989,7 @@ const PrepopulatedEngine* const engines_ZA[] = {
  912. // Zimbabwe
  913. const PrepopulatedEngine* const engines_ZW[] = {
  914. - &google,
  915. + &googleen, &google,
  916. &bing,
  917. &yahoo,
  918. &duckduckgo,
  919. --
  920. 2.20.1