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

Unified Diff: webkit/plugins/ppapi/ppb_flash_file_impl.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
« no previous file with comments | « webkit/plugins/ppapi/ppb_file_system_impl.cc ('k') | webkit/plugins/ppapi/resource_creation_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/ppb_flash_file_impl.cc
===================================================================
--- webkit/plugins/ppapi/ppb_flash_file_impl.cc (revision 91558)
+++ webkit/plugins/ppapi/ppb_flash_file_impl.cc (working copy)
@@ -8,8 +8,8 @@
#include <string>
-#include "ppapi/c/dev/pp_file_info_dev.h"
-#include "ppapi/c/dev/ppb_file_io_dev.h"
+#include "ppapi/c/pp_file_info.h"
+#include "ppapi/c/ppb_file_io.h"
#include "ppapi/c/private/ppb_flash_file.h"
#include "ppapi/thunk/enter.h"
#include "webkit/plugins/ppapi/common.h"
@@ -123,7 +123,7 @@
int32_t QueryModuleLocalFile(PP_Instance pp_instance,
const char* path,
- PP_FileInfo_Dev* info) {
+ PP_FileInfo* info) {
if (!path || !info)
return PP_ERROR_BADARGUMENT;
@@ -237,7 +237,7 @@
}
int32_t QueryFileRefFile(PP_Resource file_ref_id,
- PP_FileInfo_Dev* info) {
+ PP_FileInfo* info) {
EnterResource<PPB_FileRef_API> enter(file_ref_id, true);
if (enter.failed())
return PP_ERROR_BADRESOURCE;
« no previous file with comments | « webkit/plugins/ppapi/ppb_file_system_impl.cc ('k') | webkit/plugins/ppapi/resource_creation_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698