OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project 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 V8_WASM_RESULT_H_ | 5 #ifndef V8_WASM_RESULT_H_ |
6 #define V8_WASM_RESULT_H_ | 6 #define V8_WASM_RESULT_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "src/base/compiler-specific.h" | 10 #include "src/base/compiler-specific.h" |
11 #include "src/base/smart-pointers.h" | |
12 | 11 |
13 #include "src/handles.h" | 12 #include "src/handles.h" |
14 #include "src/globals.h" | 13 #include "src/globals.h" |
15 | 14 |
16 namespace v8 { | 15 namespace v8 { |
17 namespace internal { | 16 namespace internal { |
18 | 17 |
19 class Isolate; | 18 class Isolate; |
20 | 19 |
21 namespace wasm { | 20 namespace wasm { |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 private: | 128 private: |
130 Isolate* isolate_; | 129 Isolate* isolate_; |
131 const char* context_; | 130 const char* context_; |
132 i::Handle<i::String> message_; | 131 i::Handle<i::String> message_; |
133 }; | 132 }; |
134 } // namespace wasm | 133 } // namespace wasm |
135 } // namespace internal | 134 } // namespace internal |
136 } // namespace v8 | 135 } // namespace v8 |
137 | 136 |
138 #endif | 137 #endif |
OLD | NEW |