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

Unified Diff: ppapi/proxy/ppb_flash_file_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/ppb_flash_file_proxy.h ('k') | ppapi/proxy/ppb_flash_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppb_flash_file_proxy.cc
===================================================================
--- ppapi/proxy/ppb_flash_file_proxy.cc (revision 91558)
+++ ppapi/proxy/ppb_flash_file_proxy.cc (working copy)
@@ -16,8 +16,8 @@
#include "ipc/ipc_channel_proxy.h"
#include "ipc/ipc_message.h"
#include "ipc/ipc_sync_message.h"
-#include "ppapi/c/dev/pp_file_info_dev.h"
#include "ppapi/c/pp_errors.h"
+#include "ppapi/c/pp_file_info.h"
#include "ppapi/c/private/ppb_flash_file.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/plugin_resource.h"
@@ -77,7 +77,7 @@
private:
class Filter : public IPC::ChannelProxy::MessageFilter {
public:
- Filter(Dispatcher* dispatcher);
+ explicit Filter(Dispatcher* dispatcher);
~Filter();
void Send(IPC::Message* msg);
@@ -443,7 +443,7 @@
int32_t QueryModuleLocalFile(PP_Instance instance,
const char* path,
- PP_FileInfo_Dev* info) {
+ PP_FileInfo* info) {
if (!g_module_local_thread_adapter)
return PP_ERROR_FAILED;
@@ -590,7 +590,7 @@
void PPB_Flash_File_ModuleLocal_Proxy::OnMsgQueryFile(PP_Instance instance,
const std::string& path,
- PP_FileInfo_Dev* info,
+ PP_FileInfo* info,
int32_t* result) {
*result = ppb_flash_file_module_local_target()->
QueryFile(instance, path.c_str(), info);
@@ -643,7 +643,7 @@
}
int32_t QueryFileRefFile(PP_Resource file_ref_id,
- PP_FileInfo_Dev* info) {
+ PP_FileInfo* info) {
PluginResource* file_ref =
PluginResourceTracker::GetInstance()->GetResourceObject(file_ref_id);
if (!file_ref)
@@ -722,7 +722,7 @@
void PPB_Flash_File_FileRef_Proxy::OnMsgQueryFile(
const HostResource& host_resource,
- PP_FileInfo_Dev* info,
+ PP_FileInfo* info,
int32_t* result) {
*result = ppb_flash_file_module_local_target()->
QueryFile(host_resource.host_resource(), info);
« no previous file with comments | « ppapi/proxy/ppb_flash_file_proxy.h ('k') | ppapi/proxy/ppb_flash_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698