| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ppapi/proxy/ppapi_param_traits.h" | 5 #include "ppapi/proxy/ppapi_param_traits.h" |
| 6 | 6 |
| 7 #include <string.h> // For memcpy | 7 #include <string.h> // For memcpy |
| 8 | 8 |
| 9 #include "ppapi/c/pp_file_info.h" | 9 #include "ppapi/c/pp_file_info.h" |
| 10 #include "ppapi/c/pp_resource.h" | 10 #include "ppapi/c/pp_resource.h" |
| 11 #include "ppapi/c/private/ppb_flash_tcp_socket.h" | 11 #include "ppapi/c/private/ppb_flash_tcp_socket.h" |
| 12 #include "ppapi/proxy/interface_proxy.h" | |
| 13 #include "ppapi/proxy/ppapi_messages.h" | 12 #include "ppapi/proxy/ppapi_messages.h" |
| 14 #include "ppapi/proxy/serialized_var.h" | 13 #include "ppapi/proxy/serialized_var.h" |
| 15 #include "ppapi/proxy/serialized_flash_menu.h" | 14 #include "ppapi/proxy/serialized_flash_menu.h" |
| 16 #include "ppapi/shared_impl/host_resource.h" | 15 #include "ppapi/shared_impl/host_resource.h" |
| 17 | 16 |
| 18 namespace IPC { | 17 namespace IPC { |
| 19 | 18 |
| 20 namespace { | 19 namespace { |
| 21 | 20 |
| 22 // Deserializes a vector from IPC. This special version must be used instead | 21 // Deserializes a vector from IPC. This special version must be used instead |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 param_type* r) { | 474 param_type* r) { |
| 476 return r->ReadFromMessage(m, iter); | 475 return r->ReadFromMessage(m, iter); |
| 477 } | 476 } |
| 478 | 477 |
| 479 // static | 478 // static |
| 480 void ParamTraits<ppapi::proxy::SerializedFlashMenu>::Log(const param_type& p, | 479 void ParamTraits<ppapi::proxy::SerializedFlashMenu>::Log(const param_type& p, |
| 481 std::string* l) { | 480 std::string* l) { |
| 482 } | 481 } |
| 483 | 482 |
| 484 } // namespace IPC | 483 } // namespace IPC |
| OLD | NEW |