Index: src/wasm/wasm-debug.cc |
diff --git a/src/wasm/wasm-debug.cc b/src/wasm/wasm-debug.cc |
index 54e71009353715807c70773381c6a6de309d6830..a112a51943f6892b5a09c0141e307d89b6f57fc9 100644 |
--- a/src/wasm/wasm-debug.cc |
+++ b/src/wasm/wasm-debug.cc |
@@ -179,7 +179,7 @@ Handle<String> WasmDebugInfo::DisassembleFunction( |
Vector<const uint8_t> bytes_vec = GetFunctionBytes(debug_info, func_index); |
DisallowHeapAllocation no_gc; |
- base::AccountingAllocator allocator; |
+ AccountingAllocator allocator; |
bool ok = PrintAst( |
&allocator, FunctionBodyForTesting(bytes_vec.start(), bytes_vec.end()), |
disassembly_os, nullptr); |
@@ -208,7 +208,7 @@ Handle<FixedArray> WasmDebugInfo::GetFunctionOffsetTable( |
Vector<const uint8_t> bytes_vec = GetFunctionBytes(debug_info, func_index); |
DisallowHeapAllocation no_gc; |
- v8::base::AccountingAllocator allocator; |
+ AccountingAllocator allocator; |
bool ok = PrintAst( |
&allocator, FunctionBodyForTesting(bytes_vec.start(), bytes_vec.end()), |
null_stream, &offset_table_vec); |