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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutBlock.h

Issue 815833005: [css-grid] Handle min-content/max-content with orthogonal flows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch rebased and applied the suggested changes. Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2007 David Smith (catfish.man@gmail.com) 4 * (C) 2007 David Smith (catfish.man@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r ights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 298
299 enum PositionedLayoutBehavior { 299 enum PositionedLayoutBehavior {
300 DefaultLayout, 300 DefaultLayout,
301 LayoutOnlyFixedPositionedObjects, 301 LayoutOnlyFixedPositionedObjects,
302 ForcedLayoutAfterContainingBlockMoved 302 ForcedLayoutAfterContainingBlockMoved
303 }; 303 };
304 304
305 void layoutPositionedObjects(bool relayoutChildren, PositionedLayoutBehavior = DefaultLayout); 305 void layoutPositionedObjects(bool relayoutChildren, PositionedLayoutBehavior = DefaultLayout);
306 void markFixedPositionObjectForLayoutIfNeeded(LayoutObject* child, SubtreeLa youtScope&); 306 void markFixedPositionObjectForLayoutIfNeeded(LayoutObject* child, SubtreeLa youtScope&);
307 307
308 LayoutUnit marginIntrinsicLogicalWidthForChild(LayoutBox& child) const; 308 LayoutUnit marginIntrinsicLogicalWidthForChild(const LayoutBox& child) const ;
309 309
310 int beforeMarginInLineDirection(LineDirectionMode) const; 310 int beforeMarginInLineDirection(LineDirectionMode) const;
311 311
312 void paint(const PaintInfo&, const LayoutPoint&) const override; 312 void paint(const PaintInfo&, const LayoutPoint&) const override;
313 public: 313 public:
314 virtual void paintObject(const PaintInfo&, const LayoutPoint&) const; 314 virtual void paintObject(const PaintInfo&, const LayoutPoint&) const;
315 virtual void paintChildren(const PaintInfo&, const LayoutPoint&) const; 315 virtual void paintChildren(const PaintInfo&, const LayoutPoint&) const;
316 316
317 // FIXME-BLOCKFLOW: Remove virtualization when all callers have moved to Lay outBlockFlow 317 // FIXME-BLOCKFLOW: Remove virtualization when all callers have moved to Lay outBlockFlow
318 virtual void paintFloats(const PaintInfo&, const LayoutPoint&) const { } 318 virtual void paintFloats(const PaintInfo&, const LayoutPoint&) const { }
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 // FIXME: This is temporary as we move code that accesses block flow 518 // FIXME: This is temporary as we move code that accesses block flow
519 // member variables out of LayoutBlock and into LayoutBlockFlow. 519 // member variables out of LayoutBlock and into LayoutBlockFlow.
520 friend class LayoutBlockFlow; 520 friend class LayoutBlockFlow;
521 }; 521 };
522 522
523 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock()); 523 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBlock, isLayoutBlock());
524 524
525 } // namespace blink 525 } // namespace blink
526 526
527 #endif // LayoutBlock_h 527 #endif // LayoutBlock_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698