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

Unified Diff: sql/connection.cc

Issue 121123002: Update uses of UTF conversions in ppapi/, printing/, remoting/, rlz/, sandbox/, skia/, sql/, sync/,… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « skia/ext/image_operations_bench.cc ('k') | sql/statement.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/connection.cc
diff --git a/sql/connection.cc b/sql/connection.cc
index bfea60565f18543ca94030ce0f0c76f098527f4b..f9f80c2674e215732a36b7ec92dd038ed03e42ca 100644
--- a/sql/connection.cc
+++ b/sql/connection.cc
@@ -242,7 +242,7 @@ bool Connection::Open(const base::FilePath& path) {
}
#if defined(OS_WIN)
- return OpenInternal(WideToUTF8(path.value()), RETRY_ON_POISON);
+ return OpenInternal(base::WideToUTF8(path.value()), RETRY_ON_POISON);
#elif defined(OS_POSIX)
return OpenInternal(path.value(), RETRY_ON_POISON);
#endif
« no previous file with comments | « skia/ext/image_operations_bench.cc ('k') | sql/statement.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698