Chromium Code Reviews| Index: Source/core/dom/NodeRareData.h |
| diff --git a/Source/core/dom/NodeRareData.h b/Source/core/dom/NodeRareData.h |
| index ede7db934c0ce7f4802ca75d7e41be4392cc1faf..221872af556fde12c69038c327fb4d430dcb9f3b 100644 |
| --- a/Source/core/dom/NodeRareData.h |
| +++ b/Source/core/dom/NodeRareData.h |
| @@ -43,7 +43,7 @@ public: |
| return adoptPtrWillBeNoop(new NodeMutationObserverData); |
| } |
| - void trace(Visitor* visitor) |
| + DEFINE_INLINE_TRACE() |
| { |
| #if ENABLE(OILPAN) |
| visitor->trace(registry); |
| @@ -106,9 +106,9 @@ public: |
| ConnectedFrameCountBits = 10, // Must fit Page::maxNumberOfFrames. |
| }; |
| - void trace(Visitor*); |
| + DECLARE_TRACE(); |
| - void traceAfterDispatch(Visitor*); |
| + DECLARE_TRACE_AFTER_DISPATCH(); |
|
haraken
2015/02/24 09:18:36
Add a comment on why we need traceAfterDispatch.
|
| void finalizeGarbageCollectedObject(); |
| protected: |