Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Unified Diff: webkit/plugins/ppapi/ppb_file_io_impl.h

Issue 7248047: Migrating PPB_FileIO_Dev, PPB_FileRef_Dev, and PPB_FileSystem_Dev dependencies to PPB_FileIO, PPB... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/plugins/ppapi/ppb_file_io_impl.h
===================================================================
--- webkit/plugins/ppapi/ppb_file_io_impl.h (revision 91228)
+++ webkit/plugins/ppapi/ppb_file_io_impl.h (working copy)
@@ -11,7 +11,7 @@
#include "base/memory/scoped_callback_factory.h"
#include "base/memory/scoped_ptr.h"
#include "base/platform_file.h"
-#include "ppapi/c/dev/pp_file_info_dev.h"
+#include "ppapi/c/pp_file_info.h"
#include "ppapi/c/pp_time.h"
#include "ppapi/thunk/ppb_file_io_api.h"
#include "webkit/plugins/ppapi/callbacks.h"
@@ -19,8 +19,8 @@
#include "webkit/plugins/ppapi/resource.h"
struct PP_CompletionCallback;
-struct PPB_FileIO_Dev;
-struct PPB_FileIOTrusted_Dev;
+struct PPB_FileIO;
+struct PPB_FileIOTrusted;
namespace webkit {
namespace ppapi {
@@ -41,7 +41,7 @@
virtual int32_t Open(PP_Resource file_ref,
int32_t open_flags,
PP_CompletionCallback callback) OVERRIDE;
- virtual int32_t Query(PP_FileInfo_Dev* info,
+ virtual int32_t Query(PP_FileInfo* info,
PP_CompletionCallback callback) OVERRIDE;
virtual int32_t Touch(PP_Time last_access_time,
PP_Time last_modified_time,
@@ -93,14 +93,14 @@
base::ScopedCallbackFactory<PPB_FileIO_Impl> callback_factory_;
base::PlatformFile file_;
- PP_FileSystemType_Dev file_system_type_;
+ PP_FileSystemType file_system_type_;
// Any pending callback for any PPB_FileIO(Trusted) call taking a callback.
scoped_refptr<TrackedCompletionCallback> callback_;
// Output buffer pointer for |Query()|; only non-null when a callback is
// pending for it.
- PP_FileInfo_Dev* info_;
+ PP_FileInfo* info_;
// Pointer back to the caller's read buffer; used by |Read()|. Not owned.
char* read_buffer_;

Powered by Google App Engine
This is Rietveld 408576698