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

Unified Diff: Source/core/dom/Document.cpp

Issue 296703009: Oilpan: move custom element objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix compilation issue pointed out by clang Created 6 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/dom/Document.h ('k') | Source/core/dom/DocumentInit.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.cpp
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
index b69cf2e04871d5bcbfef8fe95af8bd0c5ba78658..6f282b6418bfa875abf79a7fd9de05ff8d2b097c 100644
--- a/Source/core/dom/Document.cpp
+++ b/Source/core/dom/Document.cpp
@@ -620,9 +620,9 @@ void Document::dispose()
m_associatedFormControls.clear();
detachParser();
-#endif
m_registrationContext.clear();
+#endif
if (m_importsController) {
m_importsController->wasDetachedFrom(*this);
@@ -5787,6 +5787,7 @@ void Document::trace(Visitor* visitor)
visitor->trace(m_contextFeatures);
visitor->trace(m_styleSheetList);
visitor->trace(m_mediaQueryMatcher);
+ visitor->trace(m_registrationContext);
visitor->trace(m_associatedFormControls);
visitor->trace(m_templateDocument);
visitor->trace(m_templateDocumentHost);
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/DocumentInit.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698