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

Unified Diff: trunk/src/webkit/common/fileapi/file_system_util.cc

Issue 474483002: Revert 289312 "Move StringToUpperASCII and LowerCaseEqualsASCII ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
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
« no previous file with comments | « trunk/src/ui/base/l10n/l10n_util_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/webkit/common/fileapi/file_system_util.cc
===================================================================
--- trunk/src/webkit/common/fileapi/file_system_util.cc (revision 289319)
+++ trunk/src/webkit/common/fileapi/file_system_util.cc (working copy)
@@ -422,8 +422,8 @@
// names, so we do a case insensitive compare by converting both strings
// to uppercase.
// TODO(benwells): Remove this when WebKit uses the same constant.
- start_token = base::StringToUpperASCII(start_token);
- std::string filesystem_name_upper = base::StringToUpperASCII(filesystem_name);
+ start_token = StringToUpperASCII(start_token);
+ std::string filesystem_name_upper = StringToUpperASCII(filesystem_name);
size_t pos = filesystem_name_upper.find(start_token);
if (pos == std::string::npos)
return false;
« no previous file with comments | « trunk/src/ui/base/l10n/l10n_util_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698