| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef PPAPI_PROXY_RESOURCE_MESSAGE_PARAMS_H_ | 5 #ifndef PPAPI_PROXY_RESOURCE_MESSAGE_PARAMS_H_ |
| 6 #define PPAPI_PROXY_RESOURCE_MESSAGE_PARAMS_H_ | 6 #define PPAPI_PROXY_RESOURCE_MESSAGE_PARAMS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 #include <stdint.h> |
| 10 |
| 8 #include <vector> | 11 #include <vector> |
| 9 | 12 |
| 10 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 11 #include "ipc/ipc_message_utils.h" | 14 #include "ipc/ipc_message_utils.h" |
| 12 #include "ppapi/c/pp_resource.h" | 15 #include "ppapi/c/pp_resource.h" |
| 13 #include "ppapi/proxy/ppapi_proxy_export.h" | 16 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 14 #include "ppapi/proxy/serialized_handle.h" | 17 #include "ppapi/proxy/serialized_handle.h" |
| 15 | 18 |
| 16 namespace ppapi { | 19 namespace ppapi { |
| 17 namespace proxy { | 20 namespace proxy { |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 param_type* r) { | 207 param_type* r) { |
| 205 return r->Deserialize(m, iter); | 208 return r->Deserialize(m, iter); |
| 206 } | 209 } |
| 207 static void Log(const param_type& p, std::string* l) { | 210 static void Log(const param_type& p, std::string* l) { |
| 208 } | 211 } |
| 209 }; | 212 }; |
| 210 | 213 |
| 211 } // namespace IPC | 214 } // namespace IPC |
| 212 | 215 |
| 213 #endif // PPAPI_PROXY_RESOURCE_MESSAGE_PARAMS_H_ | 216 #endif // PPAPI_PROXY_RESOURCE_MESSAGE_PARAMS_H_ |
| OLD | NEW |