| 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/StackFrameDepth.h" | 10 #include "platform/heap/StackFrameDepth.h" |
| 11 #include "platform/heap/Visitor.h" | 11 #include "platform/heap/Visitor.h" |
| 12 #include "platform/heap/WrapperVisitor.h" | 12 #include "platform/heap/WrapperVisitor.h" |
| 13 #include "wtf/Allocator.h" | 13 #include "platform/wtf/Allocator.h" |
| 14 #include "wtf/Assertions.h" | 14 #include "platform/wtf/Assertions.h" |
| 15 #include "wtf/HashCountedSet.h" | 15 #include "platform/wtf/HashCountedSet.h" |
| 16 #include "wtf/HashMap.h" | 16 #include "platform/wtf/HashMap.h" |
| 17 #include "wtf/HashSet.h" | 17 #include "platform/wtf/HashSet.h" |
| 18 #include "wtf/HashTable.h" | 18 #include "platform/wtf/HashTable.h" |
| 19 #include "wtf/LinkedHashSet.h" | 19 #include "platform/wtf/LinkedHashSet.h" |
| 20 #include "wtf/ListHashSet.h" | 20 #include "platform/wtf/ListHashSet.h" |
| 21 #include "wtf/TypeTraits.h" | 21 #include "platform/wtf/TypeTraits.h" |
| 22 #include "wtf/Vector.h" | 22 #include "platform/wtf/Vector.h" |
| 23 | 23 |
| 24 namespace blink { | 24 namespace blink { |
| 25 | 25 |
| 26 template <typename T> | 26 template <typename T> |
| 27 class CrossThreadPersistent; | 27 class CrossThreadPersistent; |
| 28 template <typename T> | 28 template <typename T> |
| 29 class CrossThreadWeakPersistent; | 29 class CrossThreadWeakPersistent; |
| 30 template <typename T> | 30 template <typename T> |
| 31 class Member; | 31 class Member; |
| 32 template <typename T> | 32 template <typename T> |
| (...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 // since iterating over the hash table backing will find the whole | 778 // since iterating over the hash table backing will find the whole |
| 779 // chain. | 779 // chain. |
| 780 visitor->markNoTracing(node); | 780 visitor->markNoTracing(node); |
| 781 return false; | 781 return false; |
| 782 } | 782 } |
| 783 }; | 783 }; |
| 784 | 784 |
| 785 } // namespace WTF | 785 } // namespace WTF |
| 786 | 786 |
| 787 #endif | 787 #endif |
| OLD | NEW |