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

Side by Side Diff: src/trusted/desc/nacl_desc_wrapper.h

Issue 261683002: Make a NaClDesc ctor for creating descs from NaClFileInfo. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: review Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Native Client Authors. All rights reserved. 1 // Copyright (c) 2012 The Native Client 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 NATIVE_CLIENT_SRC_TRUSTED_DESC_NACL_DESC_WRAPPER_H_ 5 #ifndef NATIVE_CLIENT_SRC_TRUSTED_DESC_NACL_DESC_WRAPPER_H_
6 #define NATIVE_CLIENT_SRC_TRUSTED_DESC_NACL_DESC_WRAPPER_H_ 6 #define NATIVE_CLIENT_SRC_TRUSTED_DESC_NACL_DESC_WRAPPER_H_
7 7
8 #include "native_client/src/include/nacl_base.h" 8 #include "native_client/src/include/nacl_base.h"
9 #include "native_client/src/public/nacl_file_info.h"
Mark Seaborn 2014/05/16 18:30:23 Not needed any more?
jvoung (off chromium) 2014/05/16 20:58:43 Done.
9 #include "native_client/src/trusted/desc/nacl_desc_base.h" 10 #include "native_client/src/trusted/desc/nacl_desc_base.h"
10 #include "native_client/src/trusted/desc/nrd_xfer.h" 11 #include "native_client/src/trusted/desc/nrd_xfer.h"
11 12
12 namespace nacl { 13 namespace nacl {
13 // Forward declarations. 14 // Forward declarations.
14 class DescWrapper; 15 class DescWrapper;
15 class DescWrapperCommon; 16 class DescWrapperCommon;
16 17
17 // We also create a utility class that allows creation of wrappers for the 18 // We also create a utility class that allows creation of wrappers for the
18 // NaClDescs. 19 // NaClDescs.
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 187
187 DescWrapperCommon* common_data_; 188 DescWrapperCommon* common_data_;
188 struct NaClDesc* desc_; 189 struct NaClDesc* desc_;
189 190
190 DISALLOW_COPY_AND_ASSIGN(DescWrapper); 191 DISALLOW_COPY_AND_ASSIGN(DescWrapper);
191 }; 192 };
192 193
193 } // namespace nacl 194 } // namespace nacl
194 195
195 #endif // NATIVE_CLIENT_SRC_TRUSTED_DESC_NACL_DESC_WRAPPER_H_ 196 #endif // NATIVE_CLIENT_SRC_TRUSTED_DESC_NACL_DESC_WRAPPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698