| Index: webkit/plugins/ppapi/file_path.cc
|
| diff --git a/webkit/plugins/ppapi/file_path.cc b/webkit/plugins/ppapi/file_path.cc
|
| index a7ed4478505ec94c2cc9a10df50edd1b26d4a804..95408c2174633d3871a0e67d963f7bccf898130a 100644
|
| --- a/webkit/plugins/ppapi/file_path.cc
|
| +++ b/webkit/plugins/ppapi/file_path.cc
|
| @@ -39,8 +39,8 @@ PepperFilePath::PepperFilePath(Domain domain, FilePath path)
|
| }
|
|
|
| // static
|
| -PepperFilePath PepperFilePath::MakeAbsolute(const char* utf8_path) {
|
| - return PepperFilePath(DOMAIN_ABSOLUTE, GetFilePathFromUTF8(utf8_path));
|
| +PepperFilePath PepperFilePath::MakeAbsolute(const FilePath& path) {
|
| + return PepperFilePath(DOMAIN_ABSOLUTE, path);
|
| }
|
|
|
| // static
|
|
|