| Index: ppapi/proxy/ppapi_param_traits.cc
|
| diff --git a/ppapi/proxy/ppapi_param_traits.cc b/ppapi/proxy/ppapi_param_traits.cc
|
| index 7c13710cb7442f18b0bb2185e41e4bb1e528e491..0e9abaadac38bd38160a106837774fbcde46ce3c 100644
|
| --- a/ppapi/proxy/ppapi_param_traits.cc
|
| +++ b/ppapi/proxy/ppapi_param_traits.cc
|
| @@ -13,6 +13,7 @@
|
| #include "ppapi/proxy/serialized_var.h"
|
| #include "ppapi/proxy/serialized_flash_menu.h"
|
| #include "ppapi/shared_impl/host_resource.h"
|
| +#include "ppapi/shared_impl/private/ppb_flash_x509_certificate_shared.h"
|
|
|
| namespace IPC {
|
|
|
| @@ -487,4 +488,25 @@ void ParamTraits<ppapi::proxy::SerializedFlashMenu>::Log(const param_type& p,
|
| std::string* l) {
|
| }
|
|
|
| +// PPB_X509Certificate_Fields --------------------------------------------------
|
| +
|
| +// static
|
| +void ParamTraits<ppapi::PPB_X509Certificate_Fields>::Write(
|
| + Message* m,
|
| + const param_type& p) {
|
| + p.WriteToMessage(m);
|
| +}
|
| +
|
| +// static
|
| +bool ParamTraits<ppapi::PPB_X509Certificate_Fields>::Read(const Message* m,
|
| + void** iter,
|
| + param_type* r) {
|
| + return r->ReadFromMessage(m, iter);
|
| +}
|
| +
|
| +// static
|
| +void ParamTraits<ppapi::PPB_X509Certificate_Fields>::Log(const param_type& p,
|
| + std::string* l) {
|
| +}
|
| +
|
| } // namespace IPC
|
|
|