| 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 4e3c8f45377b52bc8e28b183486132f72ba49553..d9bbd15f5f0af3a99b71aae836244b0084bfff1a 100644
|
| --- a/third_party/WebKit/Source/platform/heap/SafePoint.h
|
| +++ b/third_party/WebKit/Source/platform/heap/SafePoint.h
|
| @@ -93,7 +93,7 @@ class SafePointBarrier final {
|
| USING_FAST_MALLOC(SafePointBarrier);
|
| WTF_MAKE_NONCOPYABLE(SafePointBarrier);
|
| public:
|
| - SafePointBarrier();
|
| + explicit SafePointBarrier(Heap*);
|
| ~SafePointBarrier();
|
|
|
| // Request other attached threads that are not at safe points to park
|
| @@ -128,6 +128,7 @@ private:
|
| Mutex m_mutex;
|
| ThreadCondition m_parked;
|
| ThreadCondition m_resume;
|
| + Heap* m_heap;
|
| };
|
|
|
| } // namespace blink
|
|
|