| Index: src/wasm/wasm-module.h
 | 
| diff --git a/src/wasm/wasm-module.h b/src/wasm/wasm-module.h
 | 
| index 1da17ba91d51837344b4b8e8e27a70606913abda..4a9faf0b000f63efbdabf051d0afbd4ee7a789d6 100644
 | 
| --- a/src/wasm/wasm-module.h
 | 
| +++ b/src/wasm/wasm-module.h
 | 
| @@ -5,10 +5,11 @@
 | 
|  #ifndef V8_WASM_MODULE_H_
 | 
|  #define V8_WASM_MODULE_H_
 | 
|  
 | 
| +#include "src/wasm/wasm-opcodes.h"
 | 
| +#include "src/wasm/wasm-result.h"
 | 
| +
 | 
|  #include "src/api.h"
 | 
|  #include "src/handles.h"
 | 
| -#include "src/wasm/wasm-opcodes.h"
 | 
| -#include "src/wasm/wasm-result.h"
 | 
|  
 | 
|  namespace v8 {
 | 
|  namespace internal {
 | 
| @@ -318,16 +319,10 @@
 | 
|  int32_t CompileAndRunWasmModule(Isolate* isolate, const WasmModule* module);
 | 
|  
 | 
|  // Extract a function name from the given wasm object.
 | 
| -// Returns "<WASM UNNAMED>" if the function is unnamed or the name is not a
 | 
| -// valid UTF-8 string.
 | 
| -Handle<String> GetWasmFunctionName(Isolate* isolate, Handle<Object> wasm,
 | 
| -                                   uint32_t func_index);
 | 
| -
 | 
| -// Extract a function name from the given wasm object.
 | 
|  // Returns a null handle if the function is unnamed or the name is not a valid
 | 
|  // UTF-8 string.
 | 
| -Handle<Object> GetWasmFunctionNameOrNull(Isolate* isolate, Handle<Object> wasm,
 | 
| -                                         uint32_t func_index);
 | 
| +MaybeHandle<String> GetWasmFunctionName(Handle<JSObject> wasm,
 | 
| +                                        uint32_t func_index);
 | 
|  
 | 
|  // Check whether the given object is a wasm object.
 | 
|  // This checks the number and type of internal fields, so it's not 100 percent
 | 
| 
 |