| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2010 The Native Client Authors. All rights reserved. | 2 * Copyright 2011 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
| 4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_OBJECT_SERIALIZE_H_ | 7 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_OBJECT_SERIALIZE_H_ |
| 8 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_OBJECT_SERIALIZE_H_ | 8 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_OBJECT_SERIALIZE_H_ |
| 9 | 9 |
| 10 #include "ppapi/c/pp_var.h" | 10 #include "ppapi/c/pp_var.h" |
| 11 | 11 |
| 12 struct NaClSrpcChannel; | 12 struct NaClSrpcChannel; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 30 // successful, or false otherwise. | 30 // successful, or false otherwise. |
| 31 bool DeserializeTo(NaClSrpcChannel* channel, | 31 bool DeserializeTo(NaClSrpcChannel* channel, |
| 32 char* bytes, | 32 char* bytes, |
| 33 uint32_t length, | 33 uint32_t length, |
| 34 uint32_t argc, | 34 uint32_t argc, |
| 35 PP_Var* vars); | 35 PP_Var* vars); |
| 36 | 36 |
| 37 } // namespace ppapi_proxy | 37 } // namespace ppapi_proxy |
| 38 | 38 |
| 39 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_OBJECT_SERIALIZE_H_ | 39 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_OBJECT_SERIALIZE_H_ |
| OLD | NEW |