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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBlockFlow.h

Issue 2766943002: Do-not-commit: Count layout tree memory usage
Patch Set: Rebase, add object paint property counter Created 3 years, 9 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: third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
index ecc82710c737c1dde65884cbf6f5d4460d93076d..1c4305bd31414fc9dba776a82ec184733b555657 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.h
@@ -349,6 +349,16 @@ class CORE_EXPORT LayoutBlockFlow : public LayoutBlock {
const char* name() const override { return "LayoutBlockFlow"; }
+ char objectSize() const override { return sizeof(this); }
+ char approximateHeapMemoryUsage() const override {
+ int memory = LayoutBlock::approximateHeapMemoryUsage();
+ if (m_rareData)
+ memory += sizeof(LayoutBlockFlowRareData);
+ if (m_floatingObjects)
+ memory += sizeof(FloatingObjects);
+ return memory;
+ }
+
FloatingObject* insertFloatingObject(LayoutBox&);
// Position and lay out all floats that have not yet been positioned.
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBlock.h ('k') | third_party/WebKit/Source/core/layout/LayoutBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698