Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1014)

Unified Diff: Source/core/frame/LocalFrame.cpp

Issue 1166623002: Oilpan: Remove a visitor parameter from isHeapObjectAlive (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/frame/EventHandlerRegistry.cpp ('k') | Source/core/frame/PlatformEventDispatcher.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalFrame.cpp
diff --git a/Source/core/frame/LocalFrame.cpp b/Source/core/frame/LocalFrame.cpp
index 5b711fc47e11e041234ce5b1493ea2468f11f840..e095caa1102c865d686361d31d8f270f57609e69 100644
--- a/Source/core/frame/LocalFrame.cpp
+++ b/Source/core/frame/LocalFrame.cpp
@@ -779,7 +779,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);
}
« no previous file with comments | « Source/core/frame/EventHandlerRegistry.cpp ('k') | Source/core/frame/PlatformEventDispatcher.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698