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

Unified Diff: ppapi/proxy/ppb_file_ref_proxy.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 | « ppapi/proxy/ppapi_param_traits.cc ('k') | ppapi/proxy/ppb_file_system_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_file_ref_proxy.cc
===================================================================
--- ppapi/proxy/ppb_file_ref_proxy.cc (revision 91558)
+++ ppapi/proxy/ppb_file_ref_proxy.cc (working copy)
@@ -4,8 +4,8 @@
#include "ppapi/proxy/ppb_file_ref_proxy.h"
-#include "ppapi/c/dev/ppb_file_ref_dev.h"
#include "ppapi/c/pp_errors.h"
+#include "ppapi/c/ppb_file_ref.h"
#include "ppapi/c/private/ppb_proxy_private.h"
#include "ppapi/proxy/enter_proxy.h"
#include "ppapi/proxy/host_dispatcher.h"
@@ -43,7 +43,7 @@
virtual PPB_FileRef_API* AsPPB_FileRef_API() OVERRIDE;
// PPB_FileRef_API implementation.
- virtual PP_FileSystemType_Dev GetFileSystemType() const OVERRIDE;
+ virtual PP_FileSystemType GetFileSystemType() const OVERRIDE;
virtual PP_Var GetName() const OVERRIDE;
virtual PP_Var GetPath() const OVERRIDE;
virtual PP_Resource GetParent() OVERRIDE;
@@ -57,7 +57,7 @@
PP_CompletionCallback callback) OVERRIDE;
private:
- PP_FileSystemType_Dev file_system_type_;
+ PP_FileSystemType file_system_type_;
PP_Var path_;
PP_Var name_;
@@ -68,7 +68,7 @@
: PluginResource(info.resource) {
Dispatcher* dispatcher = PluginDispatcher::GetForInstance(instance());
- file_system_type_ = static_cast<PP_FileSystemType_Dev>(info.file_system_type);
+ file_system_type_ = static_cast<PP_FileSystemType>(info.file_system_type);
name_ = ReceiveSerializedVarReturnValue(info.name).Return(dispatcher);
path_ = ReceiveSerializedVarReturnValue(info.path).Return(dispatcher);
@@ -83,7 +83,7 @@
return this;
}
-PP_FileSystemType_Dev FileRef::GetFileSystemType() const {
+PP_FileSystemType FileRef::GetFileSystemType() const {
return file_system_type_;
}
@@ -155,7 +155,7 @@
const InterfaceProxy::Info* PPB_FileRef_Proxy::GetInfo() {
static const Info info = {
::ppapi::thunk::GetPPB_FileRef_Thunk(),
- PPB_FILEREF_DEV_INTERFACE,
+ PPB_FILEREF_INTERFACE,
INTERFACE_ID_PPB_FILE_REF,
false,
&CreateFileRefProxy,
« no previous file with comments | « ppapi/proxy/ppapi_param_traits.cc ('k') | ppapi/proxy/ppb_file_system_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698