OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/search_engines/template_url_prepopulate_data.h" | 5 #include "components/search_engines/template_url_prepopulate_data.h" |
6 | 6 |
7 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 7 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
8 #include <locale.h> | 8 #include <locale.h> |
9 #endif | 9 #endif |
10 | 10 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 // Switzerland | 119 // Switzerland |
120 const PrepopulatedEngine* engines_CH[] = | 120 const PrepopulatedEngine* engines_CH[] = |
121 { &google, &bing, &yahoo_ch, }; | 121 { &google, &bing, &yahoo_ch, }; |
122 | 122 |
123 // Chile | 123 // Chile |
124 const PrepopulatedEngine* engines_CL[] = | 124 const PrepopulatedEngine* engines_CL[] = |
125 { &google, &bing, &yahoo_cl, }; | 125 { &google, &bing, &yahoo_cl, }; |
126 | 126 |
127 // China | 127 // China |
128 const PrepopulatedEngine* engines_CN[] = | 128 const PrepopulatedEngine* engines_CN[] = |
129 { &google, &baidu, &sogou, }; | 129 { &google, &baidu, &sogou, &so_360}; |
130 | 130 |
131 // Colombia | 131 // Colombia |
132 const PrepopulatedEngine* engines_CO[] = | 132 const PrepopulatedEngine* engines_CO[] = |
133 { &google, &bing, &yahoo_co, }; | 133 { &google, &bing, &yahoo_co, }; |
134 | 134 |
135 // Costa Rica | 135 // Costa Rica |
136 const PrepopulatedEngine* engines_CR[] = | 136 const PrepopulatedEngine* engines_CR[] = |
137 { &google, &yahoo, &bing, }; | 137 { &google, &yahoo, &bing, }; |
138 | 138 |
139 // Czech Republic | 139 // Czech Republic |
(...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1261 base::ToUpperASCII(locale_str[begin]), | 1261 base::ToUpperASCII(locale_str[begin]), |
1262 base::ToUpperASCII(locale_str[begin + 1])); | 1262 base::ToUpperASCII(locale_str[begin + 1])); |
1263 } | 1263 } |
1264 | 1264 |
1265 return kCountryIDUnknown; | 1265 return kCountryIDUnknown; |
1266 } | 1266 } |
1267 | 1267 |
1268 #endif // OS_* | 1268 #endif // OS_* |
1269 | 1269 |
1270 } // namespace TemplateURLPrepopulateData | 1270 } // namespace TemplateURLPrepopulateData |
OLD | NEW |