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

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

Issue 3044043: Remove a deprecated wstring ToLower function. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: views Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/search_engines/template_url.cc ('k') | chrome/browser/spellcheck_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search_engines/template_url_model.cc
diff --git a/chrome/browser/search_engines/template_url_model.cc b/chrome/browser/search_engines/template_url_model.cc
index ba8e38c178d435fd6992de22fe4cf1283695da71..12c5726e3f89521240cca4ef3fe3b9e89dfc8f12 100644
--- a/chrome/browser/search_engines/template_url_model.cc
+++ b/chrome/browser/search_engines/template_url_model.cc
@@ -161,7 +161,7 @@ std::wstring TemplateURLModel::GenerateKeyword(const GURL& url,
std::wstring TemplateURLModel::CleanUserInputKeyword(
const std::wstring& keyword) {
// Remove the scheme.
- std::wstring result(l10n_util::ToLower(keyword));
+ std::wstring result(UTF16ToWide(l10n_util::ToLower(WideToUTF16(keyword))));
url_parse::Component scheme_component;
if (url_parse::ExtractScheme(WideToUTF8(keyword).c_str(),
static_cast<int>(keyword.length()),
« no previous file with comments | « chrome/browser/search_engines/template_url.cc ('k') | chrome/browser/spellcheck_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698