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

Unified Diff: Source/core/layout/LayoutBox.h

Issue 1164933006: Create LineLayout api (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: all line API implementations now in headers Created 5 years, 6 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: Source/core/layout/LayoutBox.h
diff --git a/Source/core/layout/LayoutBox.h b/Source/core/layout/LayoutBox.h
index 82eed0f075969357144384e105ac6408ef135df3..58ab793a652d0e9282615f421f41b1e46ffa871c 100644
--- a/Source/core/layout/LayoutBox.h
+++ b/Source/core/layout/LayoutBox.h
@@ -26,13 +26,14 @@
#include "core/CoreExport.h"
#include "core/layout/LayoutBoxModelObject.h"
#include "core/layout/OverflowModel.h"
-#include "core/layout/shapes/ShapeOutsideInfo.h"
#include "platform/scroll/ScrollTypes.h"
#include "platform/scroll/ScrollableArea.h"
namespace blink {
+class LayoutBlockFlow;
class LayoutMultiColumnSpannerPlaceholder;
+class ShapeOutsideInfo;
struct PaintInfo;
@@ -713,10 +714,7 @@ public:
bool hasSameDirectionAs(const LayoutBox* object) const { return style()->direction() == object->style()->direction(); }
- ShapeOutsideInfo* shapeOutsideInfo() const
- {
- return ShapeOutsideInfo::isEnabledFor(*this) ? ShapeOutsideInfo::info(*this) : nullptr;
- }
+ ShapeOutsideInfo* shapeOutsideInfo() const;
void markShapeOutsideDependentsForLayout()
{

Powered by Google App Engine
This is Rietveld 408576698