Chromium Code Reviews| Index: Source/platform/heap/InlinedGlobalMarkingVisitor.h |
| diff --git a/Source/platform/heap/InlinedGlobalMarkingVisitor.h b/Source/platform/heap/InlinedGlobalMarkingVisitor.h |
| index b3708e87f2c4b39023405ffd227ee9099c8af0d8..4da565f3455e3034ab1efd7dc7a234090d7cba56 100644 |
| --- a/Source/platform/heap/InlinedGlobalMarkingVisitor.h |
| +++ b/Source/platform/heap/InlinedGlobalMarkingVisitor.h |
| @@ -80,6 +80,14 @@ private: |
| return *static_cast<InlinedGlobalMarkingVisitor*>(helper); |
| } |
| +#if ENABLE(ASSERT) |
| + inline void checkMarkingAllowed() { getUninlined()->checkMarkingAllowed(); } |
|
haraken
2015/01/14 02:50:42
getUninlined() => m_visitor.
kouhei (in TOK)
2015/01/14 03:00:56
Done.
|
| + inline void setAllowMarkingForHashTableWeakProcessing(bool allow) |
| + { |
| + getUninlined()->setAllowMarkingForHashTableWeakProcessing(allow); |
|
haraken
2015/01/14 02:50:42
getUninlined() => m_visitor.
kouhei (in TOK)
2015/01/14 03:00:56
Done.
|
| + } |
| +#endif |
| + |
| Visitor* m_visitor; |
| }; |