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

Unified Diff: ppapi/thunk/ppb_file_ref_thunk.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: ppapi/thunk/ppb_file_ref_thunk.cc
===================================================================
--- ppapi/thunk/ppb_file_ref_thunk.cc (revision 91228)
+++ ppapi/thunk/ppb_file_ref_thunk.cc (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ppapi/c/dev/pp_file_info_dev.h"
-#include "ppapi/c/dev/ppb_file_ref_dev.h"
+#include "ppapi/c/pp_file_info.h"
+#include "ppapi/c/ppb_file_ref.h"
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/thunk/common.h"
@@ -29,7 +29,7 @@
return PP_FromBool(enter.succeeded());
}
-PP_FileSystemType_Dev GetFileSystemType(PP_Resource file_ref) {
+PP_FileSystemType GetFileSystemType(PP_Resource file_ref) {
EnterResource<PPB_FileRef_API> enter(file_ref, true);
if (enter.failed())
return PP_FILESYSTEMTYPE_INVALID;
@@ -98,7 +98,7 @@
return MayForceCallback(callback, result);
}
-const PPB_FileRef_Dev g_ppb_file_ref_thunk = {
+const PPB_FileRef g_ppb_file_ref_thunk = {
&Create,
&IsFileRef,
&GetFileSystemType,
@@ -113,7 +113,7 @@
} // namespace
-const PPB_FileRef_Dev* GetPPB_FileRef_Thunk() {
+const PPB_FileRef* GetPPB_FileRef_Thunk() {
return &g_ppb_file_ref_thunk;
}

Powered by Google App Engine
This is Rietveld 408576698