From ea505a9d49ef9770557423d2e4525d8fb91eab69 Mon Sep 17 00:00:00 2001 From: "sanga@chromium.org" Date: Thu, 7 Jul 2011 18:34:40 +0000 Subject: 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 --- ppapi/thunk/ppb_file_io_trusted_thunk.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ppapi/thunk/ppb_file_io_trusted_thunk.cc') 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; } -- cgit v1.1