OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium 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 #include <argz.h> | 5 #include <argz.h> |
| 6 #include <stddef.h> |
6 #include <string.h> | 7 #include <string.h> |
7 | 8 |
8 #include "build/build_config.h" | 9 #include "build/build_config.h" |
9 #include "native_client/src/shared/platform/nacl_log.h" | 10 #include "native_client/src/shared/platform/nacl_log.h" |
10 #include "native_client/src/shared/srpc/nacl_srpc.h" | 11 #include "native_client/src/shared/srpc/nacl_srpc.h" |
11 #include "native_client/src/untrusted/irt/irt_dev.h" | 12 #include "native_client/src/untrusted/irt/irt_dev.h" |
12 #include "ppapi/nacl_irt/irt_interfaces.h" | 13 #include "ppapi/nacl_irt/irt_interfaces.h" |
13 | 14 |
14 #if !defined(OS_NACL_NONSFI) | 15 #if !defined(OS_NACL_NONSFI) |
15 | 16 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 } | 114 } |
114 | 115 |
115 } | 116 } |
116 | 117 |
117 const struct nacl_irt_private_pnacl_translator_compile | 118 const struct nacl_irt_private_pnacl_translator_compile |
118 nacl_irt_private_pnacl_translator_compile = { | 119 nacl_irt_private_pnacl_translator_compile = { |
119 ServeTranslateRequest | 120 ServeTranslateRequest |
120 }; | 121 }; |
121 | 122 |
122 #endif // !defined(OS_NACL_NONSFI) | 123 #endif // !defined(OS_NACL_NONSFI) |
OLD | NEW |