| Index: content/renderer/pepper/pepper_file_system_host.cc
|
| diff --git a/content/renderer/pepper/pepper_file_system_host.cc b/content/renderer/pepper/pepper_file_system_host.cc
|
| index be5cead8240a6f0e0885d65f575f7286679ddc01..36000fd704b18d37708d4b64d79cc2e4eeddfd35 100644
|
| --- a/content/renderer/pepper/pepper_file_system_host.cc
|
| +++ b/content/renderer/pepper/pepper_file_system_host.cc
|
| @@ -81,9 +81,8 @@ void PepperFileSystemHost::DidOpenFileSystem(
|
| reply_context_ = ppapi::host::ReplyMessageContext();
|
| }
|
|
|
| -void PepperFileSystemHost::DidFailOpenFileSystem(
|
| - base::PlatformFileError error) {
|
| - int32 pp_error = ppapi::PlatformFileErrorToPepperError(error);
|
| +void PepperFileSystemHost::DidFailOpenFileSystem(base::File::Error error) {
|
| + int32 pp_error = ppapi::FileErrorToPepperError(error);
|
| opened_ = (pp_error == PP_OK);
|
| reply_context_.params.set_result(pp_error);
|
| host()->SendReply(reply_context_, PpapiPluginMsg_FileSystem_OpenReply());
|
|
|