Index: src/profiler/profile-generator.h |
diff --git a/src/profiler/profile-generator.h b/src/profiler/profile-generator.h |
index 5c017e1876fb6e62caa156875e9b1f7adab2d9fe..dd5cb97d10603f3e1c18b4a76b279f63bf168e9b 100644 |
--- a/src/profiler/profile-generator.h |
+++ b/src/profiler/profile-generator.h |
@@ -8,8 +8,8 @@ |
#include <map> |
#include "include/v8-profiler.h" |
#include "src/allocation.h" |
+#include "src/base/hashmap.h" |
#include "src/compiler.h" |
-#include "src/hashmap.h" |
#include "src/profiler/strings-storage.h" |
namespace v8 { |
@@ -180,10 +180,10 @@ class ProfileNode { |
CodeEntry* entry_; |
unsigned self_ticks_; |
// Mapping from CodeEntry* to ProfileNode* |
- HashMap children_; |
+ base::HashMap children_; |
List<ProfileNode*> children_list_; |
unsigned id_; |
- HashMap line_ticks_; |
+ base::HashMap line_ticks_; |
std::vector<CpuProfileDeoptInfo> deopt_infos_; |
@@ -220,7 +220,7 @@ class ProfileTree { |
Isolate* isolate_; |
unsigned next_function_id_; |
- HashMap function_ids_; |
+ base::HashMap function_ids_; |
DISALLOW_COPY_AND_ASSIGN(ProfileTree); |
}; |