Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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_ |
| OLD | NEW |