| Index: ppapi/proxy/ppapi_param_traits.cc
 | 
| diff --git a/ppapi/proxy/ppapi_param_traits.cc b/ppapi/proxy/ppapi_param_traits.cc
 | 
| index c4f9aae8561566129a42cf56c5910049950e28f7..b3611f4d01c5f061b8ea1eb7a78251018bdc856d 100644
 | 
| --- a/ppapi/proxy/ppapi_param_traits.cc
 | 
| +++ b/ppapi/proxy/ppapi_param_traits.cc
 | 
| @@ -12,6 +12,7 @@
 | 
|  #include "ppapi/proxy/interface_proxy.h"
 | 
|  #include "ppapi/proxy/ppapi_messages.h"
 | 
|  #include "ppapi/proxy/serialized_var.h"
 | 
| +#include "ppapi/proxy/serialized_flash_menu.h"
 | 
|  
 | 
|  namespace IPC {
 | 
|  
 | 
| @@ -477,4 +478,24 @@ void ParamTraits< std::vector<pp::proxy::SerializedVar> >::Log(
 | 
|      std::string* l) {
 | 
|  }
 | 
|  
 | 
| +// SerializedFlashMenu ---------------------------------------------------------
 | 
| +
 | 
| +// static
 | 
| +void ParamTraits<pp::proxy::SerializedFlashMenu>::Write(Message* m,
 | 
| +                                                        const param_type& p) {
 | 
| +  p.WriteToMessage(m);
 | 
| +}
 | 
| +
 | 
| +// static
 | 
| +bool ParamTraits<pp::proxy::SerializedFlashMenu>::Read(const Message* m,
 | 
| +                                                       void** iter,
 | 
| +                                                       param_type* r) {
 | 
| +  return r->ReadFromMessage(m, iter);
 | 
| +}
 | 
| +
 | 
| +// static
 | 
| +void ParamTraits<pp::proxy::SerializedFlashMenu>::Log(const param_type& p,
 | 
| +                                                      std::string* l) {
 | 
| +}
 | 
| +
 | 
|  }  // namespace IPC
 | 
| 
 |