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

Unified Diff: Source/WebCore/rendering/RenderBlock.h

Issue 6948015: Merge 85705 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/742/
Patch Set: Created 9 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
« no previous file with comments | « no previous file | Source/WebCore/rendering/RenderBlock.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/rendering/RenderBlock.h
===================================================================
--- Source/WebCore/rendering/RenderBlock.h (revision 86001)
+++ Source/WebCore/rendering/RenderBlock.h (working copy)
@@ -384,6 +384,7 @@
FloatingObject(Type type)
: m_renderer(0)
+ , m_originatingLine(0)
, m_paginationStrut(0)
, m_type(type)
, m_shouldPaint(true)
@@ -394,6 +395,7 @@
FloatingObject(Type type, const IntRect& frameRect)
: m_renderer(0)
+ , m_originatingLine(0)
, m_frameRect(frameRect)
, m_paginationStrut(0)
, m_type(type)
@@ -425,6 +427,7 @@
void setFrameRect(const IntRect& frameRect) { m_frameRect = frameRect; }
RenderBox* m_renderer;
+ RootInlineBox* m_originatingLine;
IntRect m_frameRect;
int m_paginationStrut;
unsigned m_type : 2; // Type (left or right aligned)
« no previous file with comments | « no previous file | Source/WebCore/rendering/RenderBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698