Chromium Code Reviews| Index: webkit/plugins/ppapi/file_callbacks.cc |
| =================================================================== |
| --- webkit/plugins/ppapi/file_callbacks.cc (revision 91228) |
| +++ webkit/plugins/ppapi/file_callbacks.cc (working copy) |
| @@ -5,9 +5,9 @@ |
| #include "webkit/plugins/ppapi/file_callbacks.h" |
| #include "base/logging.h" |
| -#include "ppapi/c/dev/ppb_file_system_dev.h" |
| -#include "ppapi/c/dev/pp_file_info_dev.h" |
| +#include "ppapi/c/pp_file_info.h" |
|
brettw
2011/07/06 16:00:34
Should be below to be in order.
sanga
2011/07/06 16:18:59
Done.
|
| #include "ppapi/c/pp_errors.h" |
| +#include "ppapi/c/ppb_file_system.h" |
| #include "webkit/plugins/ppapi/callbacks.h" |
| #include "webkit/plugins/ppapi/file_type_conversions.h" |
| #include "webkit/plugins/ppapi/plugin_module.h" |
| @@ -22,7 +22,7 @@ |
| 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) |
| : callback_(new TrackedCompletionCallback(module->GetCallbackTracker(), |