| Index: content/browser/renderer_host/pepper/pepper_flash_file_message_filter.cc
|
| diff --git a/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.cc b/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.cc
|
| index 3059dd7780ee4278c44e50e32e8a5e95360e6134..6f030773518cd263b6bc1fcfad4bdda2d0291f39 100644
|
| --- a/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.cc
|
| +++ b/content/browser/renderer_host/pepper/pepper_flash_file_message_filter.cc
|
| @@ -136,7 +136,7 @@ int32_t PepperFlashFileMessageFilter::OnOpenFile(
|
| }
|
|
|
| IPC::PlatformFileForTransit transit_file =
|
| - IPC::TakeFileHandleForProcess(std::move(file), plugin_process_.Handle());
|
| + IPC::TakePlatformFileForTransit(std::move(file));
|
| ppapi::host::ReplyMessageContext reply_context =
|
| context->MakeReplyMessageContext();
|
| reply_context.params.AppendHandle(ppapi::proxy::SerializedHandle(
|
| @@ -258,7 +258,7 @@ int32_t PepperFlashFileMessageFilter::OnCreateTemporaryFile(
|
| return ppapi::FileErrorToPepperError(file.error_details());
|
|
|
| IPC::PlatformFileForTransit transit_file =
|
| - IPC::TakeFileHandleForProcess(std::move(file), plugin_process_.Handle());
|
| + IPC::TakePlatformFileForTransit(std::move(file));
|
| ppapi::host::ReplyMessageContext reply_context =
|
| context->MakeReplyMessageContext();
|
| reply_context.params.AppendHandle(ppapi::proxy::SerializedHandle(
|
|
|