| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 Member_h | 5 #ifndef Member_h |
| 6 #define Member_h | 6 #define Member_h |
| 7 | 7 |
| 8 #include "platform/heap/HeapPage.h" |
| 8 #include "platform/wtf/Allocator.h" | 9 #include "platform/wtf/Allocator.h" |
| 9 #include "platform/wtf/HashFunctions.h" | 10 #include "platform/wtf/HashFunctions.h" |
| 10 #include "platform/wtf/HashTraits.h" | 11 #include "platform/wtf/HashTraits.h" |
| 11 | 12 |
| 12 namespace blink { | 13 namespace blink { |
| 13 | 14 |
| 14 template <typename T> | 15 template <typename T> |
| 15 class Persistent; | 16 class Persistent; |
| 16 template <typename T> | 17 template <typename T> |
| 17 class TraceWrapperMember; | 18 class TraceWrapperMember; |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 | 541 |
| 541 template <typename T> | 542 template <typename T> |
| 542 struct IsTraceable<blink::TraceWrapperMember<T>> { | 543 struct IsTraceable<blink::TraceWrapperMember<T>> { |
| 543 STATIC_ONLY(IsTraceable); | 544 STATIC_ONLY(IsTraceable); |
| 544 static const bool value = true; | 545 static const bool value = true; |
| 545 }; | 546 }; |
| 546 | 547 |
| 547 } // namespace WTF | 548 } // namespace WTF |
| 548 | 549 |
| 549 #endif // Member_h | 550 #endif // Member_h |
| OLD | NEW |