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

Unified Diff: third_party/WebKit/Source/wtf/LinkedHashSet.h

Issue 2065443002: Rename and improve "traceable" templates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment rewording Created 4 years, 6 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: third_party/WebKit/Source/wtf/LinkedHashSet.h
diff --git a/third_party/WebKit/Source/wtf/LinkedHashSet.h b/third_party/WebKit/Source/wtf/LinkedHashSet.h
index d4bb0fbf02cdee762844acae5c7963d1475dbfc7..894138bffab0f5b3a5c470c71aee8cb8e59d838c 100644
--- a/third_party/WebKit/Source/wtf/LinkedHashSet.h
+++ b/third_party/WebKit/Source/wtf/LinkedHashSet.h
@@ -350,9 +350,9 @@ struct LinkedHashSetTraits : public SimpleClassHashTraits<LinkedHashSetNode<Valu
// Whether we need to trace and do weak processing depends on the traits of
// the type inside the node.
template<typename U = void>
- struct NeedsTracingLazily {
- STATIC_ONLY(NeedsTracingLazily);
- static const bool value = ValueTraits::template NeedsTracingLazily<>::value;
+ struct IsTraceableInCollection {
+ STATIC_ONLY(IsTraceableInCollection);
+ static const bool value = ValueTraits::template IsTraceableInCollection<>::value;
};
static const WeakHandlingFlag weakHandlingFlag = ValueTraits::weakHandlingFlag;
};

Powered by Google App Engine
This is Rietveld 408576698