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

Unified Diff: Source/core/dom/Document.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
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index ce3b318d6c560de10df79caf26d868fb81575165..9b0023a1deefcecd93e08c4ae77a69b90c2ab28d 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -1038,6 +1038,17 @@ public:
CanvasFontCache* canvasFontCache();
+ void incrementNodeCount() { m_nodeCount++; }
+ void decrementNodeCount()
+ {
+ ASSERT(m_nodeCount > 0);
+ m_nodeCount--;
+ }
+ int nodeCount() const { return m_nodeCount; }
+
+ using WeakDocumentSet = WillBeHeapHashSet<RawPtrWillBeWeakMember<Document>>;
+ static WeakDocumentSet& liveDocumentSet();
+
protected:
Document(const DocumentInit&, DocumentClassFlags = DefaultDocumentClass);
@@ -1384,6 +1395,8 @@ private:
ClientHintsPreferences m_clientHintsPreferences;
PersistentWillBeMember<CanvasFontCache> m_canvasFontCache;
+
+ int m_nodeCount;
};
extern template class CORE_EXTERN_TEMPLATE_EXPORT WillBeHeapSupplement<Document>;
« no previous file with comments | « no previous file | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698