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

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

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.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.h b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
index 3587c44193422eb2e4a2605e2c5008327998ea07..ff4186a22e4733cd4a683100379c23577f130ec7 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.h
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.h
@@ -132,10 +132,8 @@ public:
Vector<LayoutTableCell*, 1> cells;
bool inColSpan; // true for columns after the first in a colspan
- CellStruct()
- : inColSpan(false)
- {
- }
+ CellStruct();
+ ~CellStruct();
// This is the cell in the grid "slot" that is on top of the others
// (aka the last cell in DOM order for this slot).

Powered by Google App Engine
This is Rietveld 408576698