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

Unified Diff: webkit/plugins/ppapi/file_callbacks.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/file_callbacks.h
===================================================================
--- webkit/plugins/ppapi/file_callbacks.h (revision 91228)
+++ webkit/plugins/ppapi/file_callbacks.h (working copy)
@@ -5,6 +5,9 @@
#ifndef WEBKIT_PLUGINS_PPAPI_FILE_CALLBACKS_H_
#define WEBKIT_PLUGINS_PPAPI_FILE_CALLBACKS_H_
+#include <string>
+#include <vector>
+
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/platform_file.h"
@@ -12,7 +15,7 @@
#include "ppapi/c/pp_resource.h"
#include "webkit/fileapi/file_system_callback_dispatcher.h"
-struct PP_FileInfo_Dev;
+struct PP_FileInfo;
namespace base {
class FilePath;
@@ -32,7 +35,7 @@
FileCallbacks(const base::WeakPtr<PluginModule>& module,
PP_Resource resource_id,
PP_CompletionCallback callback,
- PP_FileInfo_Dev* info,
+ PP_FileInfo* info,
scoped_refptr<PPB_FileSystem_Impl> file_system,
scoped_refptr<PPB_DirectoryReader_Impl> directory_reader);
virtual ~FileCallbacks();
@@ -55,7 +58,7 @@
void RunCallback(base::PlatformFileError error_code);
scoped_refptr<TrackedCompletionCallback> callback_;
- PP_FileInfo_Dev* info_;
+ PP_FileInfo* info_;
scoped_refptr<PPB_FileSystem_Impl> file_system_;
scoped_refptr<PPB_DirectoryReader_Impl> directory_reader_;
};

Powered by Google App Engine
This is Rietveld 408576698