Chromium Code Reviews| Index: ppapi/cpp/private/file_io_private.cc |
| diff --git a/ppapi/cpp/private/file_io_private.cc b/ppapi/cpp/private/file_io_private.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8f21fa4986706e7531c388172ae9a4ef56366398 |
| --- /dev/null |
| +++ b/ppapi/cpp/private/file_io_private.cc |
| @@ -0,0 +1,35 @@ |
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "ppapi/cpp/private/file_io_private.h" |
| + |
| +#include "ppapi/c/pp_errors.h" |
| +#include "ppapi/c/private/ppb_file_io_private.h" |
| +#include "ppapi/cpp/file_io.h" |
| +#include "ppapi/cpp/module_impl.h" |
| + |
| +namespace pp { |
| + |
| +namespace { |
| + |
| +template <> const char* interface_name<PPB_FileIO_Private>() { |
|
yzshen1
2013/03/27 20:47:58
nit: please append the version number explicitly.
hamaji
2013/03/28 00:17:29
Done.
|
| + return PPB_FILEIO_PRIVATE_INTERFACE_0_1; |
| +} |
| + |
| +} // namespace |
| + |
| +FileIO_Private::FileIO_Private() { |
| +} |
| + |
| +int32_t FileIO_Private::GetOSFileHandle(const FileIO& file_io, |
| + PP_FileHandle* result_handle, |
|
yzshen1
2013/03/27 20:47:58
Because usually CompletionCallback is generated by
hamaji
2013/03/28 00:17:29
I tried to address this comment, but it turned out
yzshen1
2013/03/28 20:59:49
I am not sure I understand the issue here correctl
hamaji
2013/03/28 21:37:15
Yeah, I think we need something like it. Filed two
|
| + const CompletionCallback& cc) { |
| + *result_handle = PP_kInvalidFileHandle; |
| + if (has_interface<PPB_FileIO_Private>()) |
| + return get_interface<PPB_FileIO_Private>()->GetOSFileHandle( |
| + file_io.pp_resource(), result_handle, cc.pp_completion_callback()); |
| + return cc.MayForce(PP_ERROR_NOINTERFACE); |
| +} |
| + |
| +} // namespace pp |