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

Unified Diff: Source/core/dom/Element.h

Issue 1252683003: Oilpan: Schedule a precise GC when a page navigates (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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
Index: Source/core/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index 4c1dfb9c982316e552c490dd13247286aaa8e48a..28e3a5e994c27d26e80ab1560462245b5365f481 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -804,6 +804,8 @@ inline Node::InsertionNotificationRequest Node::insertedInto(ContainerNode* inse
setFlag(IsInShadowTreeFlag);
if (childNeedsDistributionRecalc() && !insertionPoint->childNeedsDistributionRecalc())
insertionPoint->markAncestorsWithChildNeedsDistributionRecalc();
+ if (insertionPoint->inDocument())
+ insertionPoint->document().topDocument().incrementNodeCount();
haraken 2015/08/11 07:43:08 You can move this code into the above 'insertionPo
keishi 2015/08/11 08:12:57 Done.
return InsertionDone;
}
@@ -816,6 +818,8 @@ inline void Node::removedFrom(ContainerNode* insertionPoint)
clearFlag(IsInShadowTreeFlag);
if (AXObjectCache* cache = document().existingAXObjectCache())
cache->remove(this);
+ if (insertionPoint->inDocument())
+ insertionPoint->document().topDocument().decrementNodeCount();
haraken 2015/08/11 07:43:08 Ditto.
keishi 2015/08/11 08:12:58 Done.
}
inline void Element::invalidateStyleAttribute()

Powered by Google App Engine
This is Rietveld 408576698