| 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 "wtf/Allocator.h" | 8 #include "platform/wtf/Allocator.h" |
| 9 #include "wtf/HashFunctions.h" | 9 #include "platform/wtf/HashFunctions.h" |
| 10 #include "wtf/HashTraits.h" | 10 #include "platform/wtf/HashTraits.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 template <typename T> | 14 template <typename T> |
| 15 class Persistent; | 15 class Persistent; |
| 16 template <typename T> | 16 template <typename T> |
| 17 class TraceWrapperMember; | 17 class TraceWrapperMember; |
| 18 | 18 |
| 19 enum class TracenessMemberConfiguration { | 19 enum class TracenessMemberConfiguration { |
| 20 Traced, | 20 Traced, |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 | 540 |
| 541 template <typename T> | 541 template <typename T> |
| 542 struct IsTraceable<blink::TraceWrapperMember<T>> { | 542 struct IsTraceable<blink::TraceWrapperMember<T>> { |
| 543 STATIC_ONLY(IsTraceable); | 543 STATIC_ONLY(IsTraceable); |
| 544 static const bool value = true; | 544 static const bool value = true; |
| 545 }; | 545 }; |
| 546 | 546 |
| 547 } // namespace WTF | 547 } // namespace WTF |
| 548 | 548 |
| 549 #endif // Member_h | 549 #endif // Member_h |
| OLD | NEW |