| Index: ppapi/proxy/ppapi_param_traits.h
|
| diff --git a/ppapi/proxy/ppapi_param_traits.h b/ppapi/proxy/ppapi_param_traits.h
|
| index 13f7351d0a7c1c307f855c598e9096b77c032886..7556e35856ae8c15e2799210e529f1c4d333cd5f 100644
|
| --- a/ppapi/proxy/ppapi_param_traits.h
|
| +++ b/ppapi/proxy/ppapi_param_traits.h
|
| @@ -14,6 +14,7 @@
|
| #include "ppapi/c/pp_rect.h"
|
| #include "ppapi/c/pp_var.h"
|
| #include "ppapi/proxy/ppapi_proxy_export.h"
|
| +#include "ppapi/shared_impl/file_path.h"
|
| #include "ppapi/shared_impl/ppapi_permissions.h"
|
| #include "ppapi/shared_impl/ppb_file_ref_shared.h"
|
|
|
| @@ -166,6 +167,14 @@ struct PPAPI_PROXY_EXPORT ParamTraits<ppapi::PpapiPermissions> {
|
| };
|
|
|
| #if !defined(OS_NACL) && !defined(NACL_WIN64)
|
| +template <>
|
| +struct ParamTraits<ppapi::PepperFilePath> {
|
| + typedef ppapi::PepperFilePath param_type;
|
| + static void Write(Message* m, const param_type& p);
|
| + static bool Read(const Message* m, PickleIterator* iter, param_type* p);
|
| + static void Log(const param_type& p, std::string* l);
|
| +};
|
| +
|
| template<>
|
| struct PPAPI_PROXY_EXPORT ParamTraits<ppapi::proxy::SerializedFlashMenu> {
|
| typedef ppapi::proxy::SerializedFlashMenu param_type;
|
|
|