diff options
author | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 18:34:40 +0000 |
---|---|---|
committer | sanga@chromium.org <sanga@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-07 18:34:40 +0000 |
commit | ea505a9d49ef9770557423d2e4525d8fb91eab69 (patch) | |
tree | 7ace0236f95b3d101fd0e392d0506845c23d8223 /ppapi/thunk/ppb_file_io_trusted_thunk.cc | |
parent | 054498a7c3951d4047812ed918c06d46b3daa6ee (diff) | |
download | chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.zip chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.gz chromium_src-ea505a9d49ef9770557423d2e4525d8fb91eab69.tar.bz2 |
Migrating PPB_FileIO_Dev, PPB_FileRef_Dev, and PPB_FileSystem_Dev dependencies to PPB_FileIO, PPB_FileRef, and PPB_FileSystem.
Also fixed some lint errors.
Review URL: http://codereview.chromium.org/7248047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91733 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/thunk/ppb_file_io_trusted_thunk.cc')
-rw-r--r-- | ppapi/thunk/ppb_file_io_trusted_thunk.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/thunk/ppb_file_io_trusted_thunk.cc b/ppapi/thunk/ppb_file_io_trusted_thunk.cc index 38ad460..e1789bd 100644 --- a/ppapi/thunk/ppb_file_io_trusted_thunk.cc +++ b/ppapi/thunk/ppb_file_io_trusted_thunk.cc @@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "ppapi/c/dev/ppb_file_io_trusted_dev.h" #include "ppapi/c/pp_completion_callback.h" #include "ppapi/c/pp_errors.h" +#include "ppapi/c/trusted/ppb_file_io_trusted.h" #include "ppapi/thunk/common.h" #include "ppapi/thunk/enter.h" #include "ppapi/thunk/thunk.h" @@ -44,7 +44,7 @@ int32_t WillSetLength(PP_Resource file_io, return MayForceCallback(callback, result); } -const PPB_FileIOTrusted_Dev g_ppb_file_io_trusted_thunk = { +const PPB_FileIOTrusted g_ppb_file_io_trusted_thunk = { &GetOSFileDescriptor, &WillWrite, &WillSetLength @@ -52,7 +52,7 @@ const PPB_FileIOTrusted_Dev g_ppb_file_io_trusted_thunk = { } // namespace -const PPB_FileIOTrusted_Dev* GetPPB_FileIOTrusted_Thunk() { +const PPB_FileIOTrusted* GetPPB_FileIOTrusted_Thunk() { return &g_ppb_file_io_trusted_thunk; } |