Chromium Code Reviews| Index: content/common/pepper_file_util.cc |
| diff --git a/content/common/pepper_file_util.cc b/content/common/pepper_file_util.cc |
| index 6264faa5374422e65609de14913359318e0b66fa..bebd7f7690d5bbd6a4e95c6b2f060cdd653682bf 100644 |
| --- a/content/common/pepper_file_util.cc |
| +++ b/content/common/pepper_file_util.cc |
| @@ -3,6 +3,7 @@ |
| // found in the LICENSE file. |
| #include "content/common/pepper_file_util.h" |
| +#include "ppapi/shared_impl/platform_file.h" |
| namespace content { |
| @@ -23,7 +24,7 @@ storage::FileSystemType PepperFileSystemTypeToFileSystemType( |
| int IntegerFromSyncSocketHandle( |
| const base::SyncSocket::Handle& socket_handle) { |
| #if defined(OS_WIN) |
| - return reinterpret_cast<int>(socket_handle); |
| + return ppapi::PlatformFileToInt(socket_handle); |
|
Will Harris
2015/11/11 23:49:35
looks like this could call down to ppapi::Platform
brucedawson
2015/11/12 02:04:24
Good point.
|
| #elif defined(OS_POSIX) |
| return socket_handle; |
| #else |