| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef TraceTraits_h | 5 #ifndef TraceTraits_h |
| 6 #define TraceTraits_h | 6 #define TraceTraits_h |
| 7 | 7 |
| 8 #include "platform/heap/GCInfo.h" | 8 #include "platform/heap/GCInfo.h" |
| 9 #include "platform/heap/Heap.h" | 9 #include "platform/heap/Heap.h" |
| 10 #include "platform/heap/InlinedGlobalMarkingVisitor.h" | 10 #include "platform/heap/InlinedGlobalMarkingVisitor.h" |
| 11 #include "platform/heap/StackFrameDepth.h" | 11 #include "platform/heap/StackFrameDepth.h" |
| 12 #include "platform/heap/Visitor.h" | 12 #include "platform/heap/Visitor.h" |
| 13 #include "platform/heap/WrapperVisitor.h" | 13 #include "platform/heap/WrapperVisitor.h" |
| 14 #include "wtf/Allocator.h" | 14 #include "wtf/Allocator.h" |
| 15 #include "wtf/Assertions.h" | 15 #include "wtf/Assertions.h" |
| 16 #include "wtf/Deque.h" | |
| 17 #include "wtf/HashCountedSet.h" | 16 #include "wtf/HashCountedSet.h" |
| 18 #include "wtf/HashMap.h" | 17 #include "wtf/HashMap.h" |
| 19 #include "wtf/HashSet.h" | 18 #include "wtf/HashSet.h" |
| 20 #include "wtf/HashTable.h" | 19 #include "wtf/HashTable.h" |
| 21 #include "wtf/LinkedHashSet.h" | 20 #include "wtf/LinkedHashSet.h" |
| 22 #include "wtf/ListHashSet.h" | 21 #include "wtf/ListHashSet.h" |
| 23 #include "wtf/TypeTraits.h" | 22 #include "wtf/TypeTraits.h" |
| 24 #include "wtf/Vector.h" | 23 #include "wtf/Vector.h" |
| 25 | 24 |
| 26 namespace blink { | 25 namespace blink { |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 // since iterating over the hash table backing will find the whole | 602 // since iterating over the hash table backing will find the whole |
| 604 // chain. | 603 // chain. |
| 605 visitor->markNoTracing(node); | 604 visitor->markNoTracing(node); |
| 606 return false; | 605 return false; |
| 607 } | 606 } |
| 608 }; | 607 }; |
| 609 | 608 |
| 610 } // namespace WTF | 609 } // namespace WTF |
| 611 | 610 |
| 612 #endif | 611 #endif |
| OLD | NEW |