| 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 a3c3b6bc5a5f5fbd6bde210088dba7968475b2ee..a65d50dcad1a89989d68feae3c674e1513e315df 100644
|
| --- a/third_party/WebKit/Source/web/WebFrame.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrame.cpp
|
| @@ -313,9 +313,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>
|
|
|