OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/search_engines/template_url_prepopulate_data.h" | 5 #include "chrome/browser/search_engines/template_url_prepopulate_data.h" |
6 | 6 |
7 #if defined(OS_LINUX) | 7 #if defined(OS_LINUX) |
8 #include <locale.h> | 8 #include <locale.h> |
9 #endif | 9 #endif |
10 | 10 |
(...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 NULL, | 1118 NULL, |
1119 TemplateURLPrepopulateData::SEARCH_ENGINE_OTHER, | 1119 TemplateURLPrepopulateData::SEARCH_ENGINE_OTHER, |
1120 IDR_SEARCH_ENGINE_LOGO_OTHER, | 1120 IDR_SEARCH_ENGINE_LOGO_OTHER, |
1121 18, | 1121 18, |
1122 }; | 1122 }; |
1123 | 1123 |
1124 const PrepopulatedEngine in = { | 1124 const PrepopulatedEngine in = { |
1125 L"in.gr", | 1125 L"in.gr", |
1126 L"in.gr", | 1126 L"in.gr", |
1127 "http://www.in.gr/favicon.ico", | 1127 "http://www.in.gr/favicon.ico", |
1128 L"http://find.in.gr/result.asp?q={searchTerms}", | 1128 L"http://find.in.gr/?qs={searchTerms}", |
1129 "ISO-8859-7", | 1129 "ISO-8859-7", |
1130 NULL, | 1130 NULL, |
1131 TemplateURLPrepopulateData::SEARCH_ENGINE_IN, | 1131 TemplateURLPrepopulateData::SEARCH_ENGINE_IN, |
1132 IDR_SEARCH_ENGINE_LOGO_IN, | 1132 IDR_SEARCH_ENGINE_LOGO_IN, |
1133 54, | 1133 54, |
1134 }; | 1134 }; |
1135 | 1135 |
1136 const PrepopulatedEngine jabse = { | 1136 const PrepopulatedEngine jabse = { |
1137 L"Jabse", | 1137 L"Jabse", |
1138 L"jabse.com", | 1138 L"jabse.com", |
(...skipping 2116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3255 engines[i]->suggest_url, | 3255 engines[i]->suggest_url, |
3256 engines[i]->encoding, | 3256 engines[i]->encoding, |
3257 engines[i]->search_engine_type, | 3257 engines[i]->search_engine_type, |
3258 engines[i]->logo_id, | 3258 engines[i]->logo_id, |
3259 engines[i]->id); | 3259 engines[i]->id); |
3260 t_urls->push_back(turl); | 3260 t_urls->push_back(turl); |
3261 } | 3261 } |
3262 } | 3262 } |
3263 | 3263 |
3264 } // namespace TemplateURLPrepopulateData | 3264 } // namespace TemplateURLPrepopulateData |
OLD | NEW |