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

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

Issue 715973004: Remove FragementationData lazyness (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix moar compiler bugs Created 6 years, 1 month 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/RootInlineBox.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RootInlineBox.cpp
diff --git a/Source/core/rendering/RootInlineBox.cpp b/Source/core/rendering/RootInlineBox.cpp
index 3683e5698ec1a4bf676a04fd53ed23a034de94da..412bbbef7db6bc8c2455d3bbde95624c4e22564a 100644
--- a/Source/core/rendering/RootInlineBox.cpp
+++ b/Source/core/rendering/RootInlineBox.cpp
@@ -39,8 +39,8 @@ namespace blink {
struct SameSizeAsRootInlineBox : public InlineFlowBox {
unsigned unsignedVariable;
- void* pointers[4];
- LayoutUnit layoutVariables[5];
+ void* pointers[3];
+ LayoutUnit layoutVariables[7];
};
COMPILE_ASSERT(sizeof(RootInlineBox) == sizeof(SameSizeAsRootInlineBox), RootInlineBox_should_stay_small);
@@ -57,6 +57,8 @@ RootInlineBox::RootInlineBox(RenderBlockFlow& block)
, m_lineTopWithLeading(0)
, m_lineBottomWithLeading(0)
, m_selectionBottom(0)
+ , m_paginationStrut(0)
+ , m_paginatedLineWidth(0)
{
setIsHorizontal(block.isHorizontalWritingMode());
}
« no previous file with comments | « Source/core/rendering/RootInlineBox.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698