| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 | 7 |
| 8 #include "ppapi/native_client/src/trusted/plugin/srpc_params.h" | 8 #include "components/nacl/renderer/plugin/srpc_params.h" |
| 9 | 9 |
| 10 #include <stdlib.h> | 10 #include <stdlib.h> |
| 11 | 11 |
| 12 #include "native_client/src/shared/srpc/nacl_srpc.h" | 12 #include "native_client/src/shared/srpc/nacl_srpc.h" |
| 13 | 13 |
| 14 | 14 |
| 15 namespace plugin { | 15 namespace plugin { |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 110 } |
| 111 | 111 |
| 112 void SrpcParams::FreeAll() { | 112 void SrpcParams::FreeAll() { |
| 113 FreeArguments(ins_); | 113 FreeArguments(ins_); |
| 114 FreeArguments(outs_); | 114 FreeArguments(outs_); |
| 115 memset(ins_, 0, sizeof(ins_)); | 115 memset(ins_, 0, sizeof(ins_)); |
| 116 memset(outs_, 0, sizeof(outs_)); | 116 memset(outs_, 0, sizeof(outs_)); |
| 117 } | 117 } |
| 118 | 118 |
| 119 } // namespace plugin | 119 } // namespace plugin |
| OLD | NEW |