| Index: src/isolate.h
|
| diff --git a/src/isolate.h b/src/isolate.h
|
| index a1d0e887dbe21d512a9115520ad9cd423ea8be6e..6893fa84a97b0eb38b81f943144a0329f7251b17 100644
|
| --- a/src/isolate.h
|
| +++ b/src/isolate.h
|
| @@ -13,6 +13,7 @@
|
| #include "src/assert-scope.h"
|
| #include "src/base/accounting-allocator.h"
|
| #include "src/base/atomicops.h"
|
| +#include "src/base/hashmap.h"
|
| #include "src/builtins.h"
|
| #include "src/cancelable-task.h"
|
| #include "src/contexts.h"
|
| @@ -22,7 +23,6 @@
|
| #include "src/futex-emulation.h"
|
| #include "src/global-handles.h"
|
| #include "src/handles.h"
|
| -#include "src/hashmap.h"
|
| #include "src/heap/heap.h"
|
| #include "src/messages.h"
|
| #include "src/optimizing-compile-dispatcher.h"
|
| @@ -359,9 +359,9 @@ class ThreadLocalTop BASE_EMBEDDED {
|
|
|
| #if USE_SIMULATOR
|
|
|
| -#define ISOLATE_INIT_SIMULATOR_LIST(V) \
|
| - V(bool, simulator_initialized, false) \
|
| - V(HashMap*, simulator_i_cache, NULL) \
|
| +#define ISOLATE_INIT_SIMULATOR_LIST(V) \
|
| + V(bool, simulator_initialized, false) \
|
| + V(base::HashMap*, simulator_i_cache, NULL) \
|
| V(Redirection*, simulator_redirection, NULL)
|
| #else
|
|
|
| @@ -407,8 +407,8 @@ typedef List<HeapObject*> DebugObjectCache;
|
| V(DebugObjectCache*, string_stream_debug_object_cache, NULL) \
|
| V(Object*, string_stream_current_security_token, NULL) \
|
| V(ExternalReferenceTable*, external_reference_table, NULL) \
|
| - V(HashMap*, external_reference_map, NULL) \
|
| - V(HashMap*, root_index_map, NULL) \
|
| + V(base::HashMap*, external_reference_map, NULL) \
|
| + V(base::HashMap*, root_index_map, NULL) \
|
| V(int, pending_microtask_count, 0) \
|
| V(HStatistics*, hstatistics, NULL) \
|
| V(CompilationStatistics*, turbo_statistics, NULL) \
|
|
|