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

Unified Diff: ppapi/proxy/ppapi_param_traits.h

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_messages.h ('k') | ppapi/proxy/ppapi_param_traits.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/ppapi_param_traits.h
===================================================================
--- ppapi/proxy/ppapi_param_traits.h (revision 91558)
+++ ppapi/proxy/ppapi_param_traits.h (working copy)
@@ -5,6 +5,9 @@
#ifndef PPAPI_PROXY_PPAPI_PARAM_TRAITS_H_
#define PPAPI_PROXY_PPAPI_PARAM_TRAITS_H_
+#include <string>
+#include <vector>
+
#include "ipc/ipc_message_utils.h"
#include "ipc/ipc_platform_file.h"
#include "ppapi/c/pp_completion_callback.h"
@@ -12,7 +15,7 @@
#include "ppapi/c/pp_rect.h"
#include "ppapi/c/pp_var.h"
-struct PP_FileInfo_Dev;
+struct PP_FileInfo;
struct PP_ObjectProperty;
struct PP_Flash_Menu;
struct PP_Flash_NetAddress;
@@ -43,8 +46,8 @@
};
template<>
-struct ParamTraits<PP_FileInfo_Dev> {
- typedef PP_FileInfo_Dev param_type;
+struct ParamTraits<PP_FileInfo> {
+ typedef PP_FileInfo param_type;
static void Write(Message* m, const param_type& p);
static bool Read(const Message* m, void** iter, param_type* r);
static void Log(const param_type& p, std::string* l);
« no previous file with comments | « ppapi/proxy/ppapi_messages.h ('k') | ppapi/proxy/ppapi_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698