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

Unified Diff: Source/core/rendering/RenderTableSection.cpp

Issue 13973026: remove memoryinstrumentation Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove the rest part of MemoryInstrumentation Created 7 years, 8 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/rendering/RenderTableSection.h ('k') | Source/core/rendering/RenderText.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderTableSection.cpp
diff --git a/Source/core/rendering/RenderTableSection.cpp b/Source/core/rendering/RenderTableSection.cpp
index ff8e33ffa919dd454b6e1d9be525e02f6ffb6c1b..28805692e11b95801175702b567ef4e3ca8d67d5 100644
--- a/Source/core/rendering/RenderTableSection.cpp
+++ b/Source/core/rendering/RenderTableSection.cpp
@@ -35,12 +35,8 @@
#include "RenderTableRow.h"
#include "RenderView.h"
#include "StyleInheritedData.h"
-#include "WebCoreMemoryInstrumentation.h"
#include <limits>
#include <wtf/HashSet.h>
-#include <wtf/MemoryInstrumentationHashMap.h>
-#include <wtf/MemoryInstrumentationHashSet.h>
-#include <wtf/MemoryInstrumentationVector.h>
#include <wtf/Vector.h>
using namespace std;
@@ -1439,29 +1435,4 @@ void RenderTableSection::setLogicalPositionForCell(RenderTableCell* cell, unsign
view()->addLayoutDelta(oldCellLocation - cell->location());
}
-void RenderTableSection::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Rendering);
- RenderBox::reportMemoryUsage(memoryObjectInfo);
- info.addMember(m_children, "children");
- info.addMember(m_grid, "grid");
- info.addMember(m_rowPos, "rowPos");
- info.addMember(m_overflowingCells, "overflowingCells");
- info.addMember(m_cellsCollapsedBorders, "cellsCollapsedBorders");
-}
-
-void RenderTableSection::RowStruct::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Rendering);
- info.addMember(row, "row");
- info.addMember(rowRenderer, "rowRenderer");
- info.addMember(logicalHeight, "logicalHeight");
-}
-
-void RenderTableSection::CellStruct::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
-{
- MemoryClassInfo info(memoryObjectInfo, this, PlatformMemoryTypes::Rendering);
- info.addMember(cells, "cells");
-}
-
} // namespace WebCore
« no previous file with comments | « Source/core/rendering/RenderTableSection.h ('k') | Source/core/rendering/RenderText.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698