Chromium Code Reviews| 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 |