Chromium Code Reviews| Index: third_party/WebKit/Source/platform/heap/SafePoint.h |
| diff --git a/third_party/WebKit/Source/platform/heap/SafePoint.h b/third_party/WebKit/Source/platform/heap/SafePoint.h |
| index 0b96633b51b4b40dcd08a8fa33228eb410f5901a..8b6072395b88657f38c53ca57ce85d484c7e1f8c 100644 |
| --- a/third_party/WebKit/Source/platform/heap/SafePoint.h |
| +++ b/third_party/WebKit/Source/platform/heap/SafePoint.h |
| @@ -90,7 +90,7 @@ private: |
| class SafePointBarrier final { |
| WTF_MAKE_NONCOPYABLE(SafePointBarrier); |
| public: |
| - SafePointBarrier(); |
| + SafePointBarrier(MultiThreadGCGroup*); |
|
haraken
2016/01/28 15:52:50
Add explicit.
keishi
2016/02/29 06:02:33
Done.
|
| ~SafePointBarrier(); |
| // Request other attached threads that are not at safe points to park |
| @@ -125,6 +125,7 @@ private: |
| Mutex m_mutex; |
| ThreadCondition m_parked; |
| ThreadCondition m_resume; |
| + MultiThreadGCGroup* m_gcGroup; |
| }; |
| } // namespace blink |