Index: ppapi/proxy/ppapi_param_traits.h |
=================================================================== |
--- ppapi/proxy/ppapi_param_traits.h (revision 65847) |
+++ ppapi/proxy/ppapi_param_traits.h (working copy) |
@@ -6,17 +6,21 @@ |
#define PPAPI_PROXY_PPAPI_PARAM_TRAITS_H_ |
#include "ipc/ipc_message_utils.h" |
+#include "ipc/ipc_platform_file.h" |
#include "ppapi/c/pp_completion_callback.h" |
#include "ppapi/c/pp_input_event.h" |
#include "ppapi/c/pp_rect.h" |
#include "ppapi/c/pp_var.h" |
#include "ppapi/proxy/serialized_var.h" // TODO(brettw) eraseme. |
+struct PP_FileInfo_Dev; |
struct PP_ObjectProperty; |
namespace pp { |
namespace proxy { |
+struct PPBFlash_DrawGlyphs_Params; |
struct PPBFont_DrawTextAt_Params; |
+struct SerializedDirEntry; |
struct SerializedFontDescription; |
class SerializedVar; |
} |
@@ -33,6 +37,14 @@ |
}; |
template<> |
+struct ParamTraits<PP_FileInfo_Dev> { |
+ typedef PP_FileInfo_Dev 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); |
+}; |
+ |
+template<> |
struct ParamTraits<PP_InputEvent> { |
typedef PP_InputEvent param_type; |
static void Write(Message* m, const param_type& p); |
@@ -73,6 +85,14 @@ |
}; |
template<> |
+struct ParamTraits<pp::proxy::PPBFlash_DrawGlyphs_Params> { |
+ typedef pp::proxy::PPBFlash_DrawGlyphs_Params 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); |
+}; |
+ |
+template<> |
struct ParamTraits<pp::proxy::PPBFont_DrawTextAt_Params> { |
typedef pp::proxy::PPBFont_DrawTextAt_Params param_type; |
static void Write(Message* m, const param_type& p); |
@@ -81,6 +101,14 @@ |
}; |
template<> |
+struct ParamTraits<pp::proxy::SerializedDirEntry> { |
+ typedef pp::proxy::SerializedDirEntry 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); |
+}; |
+ |
+template<> |
struct ParamTraits<pp::proxy::SerializedFontDescription> { |
typedef pp::proxy::SerializedFontDescription param_type; |
static void Write(Message* m, const param_type& p); |