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

Unified Diff: components/query_parser/snippet_unittest.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
Index: components/query_parser/snippet_unittest.cc
diff --git a/components/query_parser/snippet_unittest.cc b/components/query_parser/snippet_unittest.cc
index ef32d430b401273b39e15eeea6aaea24089161dc..c409415ded1126bed1e012a414cdaec156b2b4f1 100644
--- a/components/query_parser/snippet_unittest.cc
+++ b/components/query_parser/snippet_unittest.cc
@@ -96,7 +96,8 @@ base::string16 BuildSnippet(const std::string& document,
// |document|. We need to add more test cases and change this function
// to be more generic depending on how we deal with 'folding for match'
// in history.
- const std::string document_folded = StringToLowerASCII(std::string(document));
+ const std::string document_folded =
+ base::StringToLowerASCII(std::string(document));
std::vector<std::string> query_words;
base::SplitString(query, ' ', &query_words);
« no previous file with comments | « components/policy/core/common/preg_parser_win.cc ('k') | components/signin/core/browser/signin_internals_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698