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

Unified Diff: webkit/plugins/ppapi/file_callbacks.cc

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.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(),

Powered by Google App Engine
This is Rietveld 408576698