Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Unified Diff: chrome/browser/search_engines/template_url_prepopulate_data.cc

Issue 10695115: Add a separate protector UMA state when backup is overwritten by migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/search_engines/search_engine_type.h ('k') | chrome/browser/webdata/keyword_table.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search_engines/template_url_prepopulate_data.cc
diff --git a/chrome/browser/search_engines/template_url_prepopulate_data.cc b/chrome/browser/search_engines/template_url_prepopulate_data.cc
index 27988bea72207976ddbe03965f38abc15d8ee75c..82da8f672b0ef4e46bef41667f94e0d11c05b77b 100644
--- a/chrome/browser/search_engines/template_url_prepopulate_data.cc
+++ b/chrome/browser/search_engines/template_url_prepopulate_data.cc
@@ -72,8 +72,8 @@ struct PrepopulatedEngine {
// must use two different unique IDs (and different keywords).
//
// The following unique IDs are available:
- // 50, 52, 53, 56, 58, 60, 61, 64, 65, 66, 70, 74, 78, 79, 80, 81, 84, 86,
- // 88, 91, 92, 93, 94, 95, 96, 97, 98, 99, 102+
+ // 53, 56, 58, 60, 61, 64, 65, 66, 70, 74, 78, 79, 80, 81, 84, 86, 88, 91,
+ // 92, 93, 94, 95, 96, 97, 98, 99, 102+
//
// IDs > 1000 are reserved for distribution custom engines.
//
@@ -2133,6 +2133,30 @@ const PrepopulatedEngine aport = {
34,
};
+const PrepopulatedEngine avg = {
+ L"AVG Secure Search",
+ L"search.avg.com",
+ NULL,
+ "http://search.avg.com/route/?q={searchTerms}&lng={language}",
+ "UTF-8",
+ NULL,
+ NULL,
+ SEARCH_ENGINE_AVG,
+ 50,
+};
+
+const PrepopulatedEngine avg_i = {
+ L"AVG Secure Search",
+ L"isearch.avg.com",
+ NULL,
+ "http://isearch.avg.com/search?q={searchTerms}&lng={language}",
+ "UTF-8",
+ NULL,
+ NULL,
+ SEARCH_ENGINE_AVG,
+ 52,
+};
+
const PrepopulatedEngine conduit = {
L"Conduit",
L"conduit.com",
@@ -2711,8 +2735,8 @@ const PrepopulatedEngine* kAllEngines[] =
&yahoo_sg, &yahoo_th, &yahoo_tw, &yahoo_uk, &yahoo_ve, &yahoo_vn, &yamli,
&yandex_ru, &yandex_ua, &zoznam,
// UMA-only engines:
- &all_by, &aport, &conduit, &icq, &meta_ua, &metabot_ru, &nigma, &qip,
- &ukr_net, &webalta, &yandex_tr };
+ &all_by, &aport, &avg, &avg_i, &conduit, &icq, &meta_ua, &metabot_ru,
+ &nigma, &qip, &ukr_net, &webalta, &yandex_tr };
// Geographic mappings /////////////////////////////////////////////////////////
« no previous file with comments | « chrome/browser/search_engines/search_engine_type.h ('k') | chrome/browser/webdata/keyword_table.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698