| Index: webkit/plugins/ppapi/file_callbacks.h
|
| ===================================================================
|
| --- webkit/plugins/ppapi/file_callbacks.h (revision 91558)
|
| +++ 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_;
|
| };
|
|
|