| Index: third_party/WebKit/Source/web/WebFrame.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrame.cpp b/third_party/WebKit/Source/web/WebFrame.cpp
|
| index 528378db7b1b9531e3660f6d1bcfa3f9c2d63aba..d94a8a9e2c44972cf6eec32d68ce54035231f4ba 100644
|
| --- a/third_party/WebKit/Source/web/WebFrame.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrame.cpp
|
| @@ -324,9 +324,9 @@ ALWAYS_INLINE bool WebFrame::isFrameAlive(const WebFrame* frame)
|
| return true;
|
|
|
| if (frame->isWebLocalFrame())
|
| - return Heap::isHeapObjectAlive(toWebLocalFrameImpl(frame));
|
| + return ThreadHeap::isHeapObjectAlive(toWebLocalFrameImpl(frame));
|
|
|
| - return Heap::isHeapObjectAlive(toWebRemoteFrameImpl(frame));
|
| + return ThreadHeap::isHeapObjectAlive(toWebRemoteFrameImpl(frame));
|
| }
|
|
|
| template <typename VisitorDispatcher>
|
|
|