| 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" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 namespace blink { | 25 namespace blink { |
| 26 | 26 |
| 27 template <typename T> | 27 template <typename T> |
| 28 class CrossThreadPersistent; | 28 class CrossThreadPersistent; |
| 29 template <typename T> | 29 template <typename T> |
| 30 class CrossThreadWeakPersistent; | 30 class CrossThreadWeakPersistent; |
| 31 template <typename T> | 31 template <typename T> |
| 32 class Member; | 32 class Member; |
| 33 template <typename T> | 33 template <typename T> |
| 34 class TraceEagerlyTrait; |
| 35 template <typename T> |
| 34 class TraceTrait; | 36 class TraceTrait; |
| 35 template <typename T> | 37 template <typename T> |
| 36 class WeakMember; | 38 class WeakMember; |
| 37 template <typename T> | 39 template <typename T> |
| 38 class WeakPersistent; | 40 class WeakPersistent; |
| 39 | 41 |
| 40 template <typename T, bool = NeedsAdjustAndMark<T>::value> | 42 template <typename T, bool = NeedsAdjustAndMark<T>::value> |
| 41 class AdjustAndMarkTrait; | 43 class AdjustAndMarkTrait; |
| 42 | 44 |
| 43 template <typename T> | 45 template <typename T> |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 // since iterating over the hash table backing will find the whole | 760 // since iterating over the hash table backing will find the whole |
| 759 // chain. | 761 // chain. |
| 760 visitor->markNoTracing(node); | 762 visitor->markNoTracing(node); |
| 761 return false; | 763 return false; |
| 762 } | 764 } |
| 763 }; | 765 }; |
| 764 | 766 |
| 765 } // namespace WTF | 767 } // namespace WTF |
| 766 | 768 |
| 767 #endif | 769 #endif |
| OLD | NEW |