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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp

Issue 1999343002: Unify and provide one IsGarbageCollectedType<T> implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test Created 4 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
Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
index 7ed46e8678ee4fb93309222f4e8ffb0423031181..fc6328921f0d096245b5cf5b09d47034ea2e6f98 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -87,6 +87,15 @@ void CellSpan::ensureConsistency(const unsigned maximumSpanSize)
RELEASE_ASSERT(m_start <= m_end);
}
+LayoutTableSection::CellStruct::CellStruct()
+ : inColSpan(false)
+{
+}
+
+LayoutTableSection::CellStruct::~CellStruct()
+{
+}
+
LayoutTableSection::LayoutTableSection(Element* element)
: LayoutTableBoxComponent(element)
, m_cCol(0)

Powered by Google App Engine
This is Rietveld 408576698