Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: components/nacl/renderer/plugin/srpc_params.cc

Issue 876483002: NaCl: Move src/trusted/plugin/ to components/nacl/renderer/plugin/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update #include guards Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698