| Index: ppapi/shared_impl/file_ref_util.cc
|
| diff --git a/ppapi/shared_impl/file_ref_util.cc b/ppapi/shared_impl/file_ref_util.cc
|
| index 3d2deff50ec050d0aeac91617ab39cba9861429d..3be8e0aed9476c4d3b086c1d4baea78e0afc62e4 100644
|
| --- a/ppapi/shared_impl/file_ref_util.cc
|
| +++ b/ppapi/shared_impl/file_ref_util.cc
|
| @@ -23,7 +23,7 @@ std::string GetNameForExternalFilePath(const base::FilePath& path) {
|
| size_t pos = file_path.rfind(base::FilePath::kSeparators[0]);
|
| CHECK(pos != base::FilePath::StringType::npos);
|
| #if defined(OS_WIN)
|
| - return WideToUTF8(file_path.substr(pos + 1));
|
| + return base::WideToUTF8(file_path.substr(pos + 1));
|
| #elif defined(OS_POSIX)
|
| return file_path.substr(pos + 1);
|
| #else
|
|
|