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

Unified Diff: chrome/browser/template_url_prepopulate_data.cc

Issue 8802: Update prepopulate data by request for a couple different issues.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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 | « no previous file | chrome/browser/views/keyword_editor_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/template_url_prepopulate_data.cc
===================================================================
--- chrome/browser/template_url_prepopulate_data.cc (revision 4011)
+++ chrome/browser/template_url_prepopulate_data.cc (working copy)
@@ -45,7 +45,7 @@
// to appear for one country (e.g. Live Search U.S. English and Spanish), we
// must use two different unique IDs (and different keywords).
//
- // The following unique IDs are available: 92, 93, 103+
+ // The following unique IDs are available: 66, 93, 103+
// NOTE: CHANGE THE ABOVE NUMBERS IF YOU ADD A NEW ENGINE; ID conflicts = bad!
const int id;
};
@@ -469,6 +469,16 @@
40,
};
+const PrepopulatedEngine goo = {
+ L"goo",
+ L"goo.ne.jp",
+ L"http://goo.ne.jp/gooicon.ico",
+ L"http://search.goo.ne.jp/web.jsp?MT={searchTerms}&IE={inputEncoding}",
+ "UTF-8",
+ NULL,
+ 92,
+};
+
const PrepopulatedEngine google = {
L"Google",
NULL,
@@ -522,16 +532,6 @@
54,
};
-const PrepopulatedEngine infoseek = {
- L"Infoseek",
- L"infoseek.co.jp",
- L"http://search.www.infoseek.co.jp/favicon.ico",
- L"http://search.www.infoseek.co.jp/Web?qt={searchTerms}&enc={inputEncoding}",
- "EUC-JP",
- NULL,
- 66,
-};
-
const PrepopulatedEngine jabse = {
L"Jabse",
L"jabse.com",
@@ -1603,7 +1603,7 @@
L"T-Online",
L"suche.t-online.de",
L"http://suche.t-online.de/favicon.ico",
- L"http://suche.t-online.de/fast-cgi/tsc?q={searchTerms}",
+ L"http://suche.t-online.de/fast-cgi/tsc?sr=chrome&q={searchTerms}",
"UTF-8",
NULL,
49,
@@ -2425,7 +2425,7 @@
// Japan
const PrepopulatedEngine* engines_JP[] =
- { &google, &yahoo_jp, &msn_ja_JP, &biglobe, &nifty, &infoseek, };
+ { &google, &yahoo_jp, &msn_ja_JP, &biglobe, &goo, &nifty, };
// Kenya
const PrepopulatedEngine* engines_KE[] = { &google, &yahoo, &msn, };
@@ -3006,7 +3006,7 @@
}
int GetDataVersion() {
- return 16; // Increment this if you change the above data in ways that mean
+ return 17; // Increment this if you change the above data in ways that mean
// users with existing data should get a new version.
}
« no previous file with comments | « no previous file | chrome/browser/views/keyword_editor_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698