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

Unified Diff: src/profiler/profile-generator.h

Issue 2369963002: [base] Remove PointersMatch, making a separate std::equals hashmap (Closed)
Patch Set: Created 4 years, 3 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/profiler/profile-generator.h
diff --git a/src/profiler/profile-generator.h b/src/profiler/profile-generator.h
index eb7937b5626ae78655c403a7801668d398c95c55..179d4114293eedbd9060e9a9786fe1abcab77aac 100644
--- a/src/profiler/profile-generator.h
+++ b/src/profiler/profile-generator.h
@@ -221,10 +221,10 @@ class ProfileNode {
CodeEntry* entry_;
unsigned self_ticks_;
// Mapping from CodeEntry* to ProfileNode*
- base::HashMap children_;
+ base::CustomMatcherHashMap children_;
List<ProfileNode*> children_list_;
unsigned id_;
- base::HashMap line_ticks_;
+ base::CustomMatcherHashMap line_ticks_;
std::vector<CpuProfileDeoptInfo> deopt_infos_;
@@ -261,7 +261,7 @@ class ProfileTree {
Isolate* isolate_;
unsigned next_function_id_;
- base::HashMap function_ids_;
+ base::CustomMatcherHashMap function_ids_;
DISALLOW_COPY_AND_ASSIGN(ProfileTree);
};

Powered by Google App Engine
This is Rietveld 408576698