| Index: ppapi/thunk/ppb_file_io_private_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_file_io_private_thunk.cc b/ppapi/thunk/ppb_file_io_private_thunk.cc
|
| index 20c7971a2a0fe7d3482554c039cf03f35a1ae831..38c05e68e0a3d51fa2c8ac8ef6dbfc95ce6d97fd 100644
|
| --- a/ppapi/thunk/ppb_file_io_private_thunk.cc
|
| +++ b/ppapi/thunk/ppb_file_io_private_thunk.cc
|
| @@ -25,14 +25,12 @@ int32_t RequestOSFileHandle(PP_Resource file_io,
|
| EnterResource<PPB_FileIO_API> enter(file_io, callback, true);
|
| if (enter.failed())
|
| return enter.retval();
|
| - return enter.SetResult(enter.object()->RequestOSFileHandle(
|
| - handle,
|
| - enter.callback()));
|
| + return enter.SetResult(
|
| + enter.object()->RequestOSFileHandle(handle, enter.callback()));
|
| }
|
|
|
| const PPB_FileIO_Private_0_1 g_ppb_fileio_private_thunk_0_1 = {
|
| - &RequestOSFileHandle
|
| -};
|
| + &RequestOSFileHandle};
|
|
|
| } // namespace
|
|
|
|
|