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

Unified Diff: webkit/child/ftp_directory_listing_response_delegate.cc

Issue 102993018: Remove UTF string conversion functions from the global namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: aaaaaaaaaa Created 7 years 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: webkit/child/ftp_directory_listing_response_delegate.cc
diff --git a/webkit/child/ftp_directory_listing_response_delegate.cc b/webkit/child/ftp_directory_listing_response_delegate.cc
index 4b35b58db30fff60f30f5f6a16d7ed111194579a..3ff37f09bff89cc06599c6cbf7215904f40e7c84 100644
--- a/webkit/child/ftp_directory_listing_response_delegate.cc
+++ b/webkit/child/ftp_directory_listing_response_delegate.cc
@@ -48,7 +48,7 @@ base::string16 ConvertPathToUTF16(const std::string& path) {
}
// Use system native encoding as the last resort.
- return WideToUTF16Hack(base::SysNativeMBToWide(path));
+ return base::WideToUTF16Hack(base::SysNativeMBToWide(path));
}
} // namespace
« no previous file with comments | « webkit/browser/database/databases_table_unittest.cc ('k') | webkit/common/database/database_connections_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698