| Index: Source/core/frame/LocalFrame.cpp
|
| diff --git a/Source/core/frame/LocalFrame.cpp b/Source/core/frame/LocalFrame.cpp
|
| index f5a0e0366599c39e4b4a3ddcb51b16f1987cdc8a..b2df2625d8606b623f6209f66c91edcbbdb0cfcc 100644
|
| --- a/Source/core/frame/LocalFrame.cpp
|
| +++ b/Source/core/frame/LocalFrame.cpp
|
| @@ -780,7 +780,7 @@ void LocalFrame::clearWeakMembers(Visitor* visitor)
|
| {
|
| Vector<HTMLPlugInElement*> deadPlugins;
|
| for (const auto& pluginElement : m_pluginElements) {
|
| - if (!visitor->isHeapObjectAlive(pluginElement)) {
|
| + if (!Heap::isHeapObjectAlive(pluginElement)) {
|
| pluginElement->shouldDisposePlugin();
|
| deadPlugins.append(pluginElement);
|
| }
|
|
|