| 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/Visitor.h" | 12 #include "platform/heap/Visitor.h" |
| 12 #include "wtf/Allocator.h" | 13 #include "wtf/Allocator.h" |
| 13 #include "wtf/Assertions.h" | 14 #include "wtf/Assertions.h" |
| 14 #include "wtf/Deque.h" | 15 #include "wtf/Deque.h" |
| 15 #include "wtf/HashCountedSet.h" | 16 #include "wtf/HashCountedSet.h" |
| 16 #include "wtf/HashMap.h" | 17 #include "wtf/HashMap.h" |
| 17 #include "wtf/HashSet.h" | 18 #include "wtf/HashSet.h" |
| 18 #include "wtf/HashTable.h" | 19 #include "wtf/HashTable.h" |
| 19 #include "wtf/LinkedHashSet.h" | 20 #include "wtf/LinkedHashSet.h" |
| 20 #include "wtf/ListHashSet.h" | 21 #include "wtf/ListHashSet.h" |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 // since iterating over the hash table backing will find the whole | 586 // since iterating over the hash table backing will find the whole |
| 586 // chain. | 587 // chain. |
| 587 visitor->markNoTracing(node); | 588 visitor->markNoTracing(node); |
| 588 return false; | 589 return false; |
| 589 } | 590 } |
| 590 }; | 591 }; |
| 591 | 592 |
| 592 } // namespace WTF | 593 } // namespace WTF |
| 593 | 594 |
| 594 #endif | 595 #endif |
| OLD | NEW |