| 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;
|
| };
|
|
|