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

Side by Side Diff: components/search_engines/template_url_prepopulate_data.cc

Issue 2251243002: Add 360 search engine to Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove "so" from histogram Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « components/search_engines/search_engine_type.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « components/search_engines/search_engine_type.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698