Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(504)

Unified Diff: src/isolate.h

Issue 2010243003: Move hashmap into base/. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index a1d0e887dbe21d512a9115520ad9cd423ea8be6e..f2c3a9dcd9b8fdd3e8d96afd6d6d7ec282ae2694 100644
--- a/src/isolate.h
+++ b/src/isolate.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) \
« src/base/hashmap.cc ('K') | « src/heap/spaces.cc ('k') | src/libsampler/hashmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698