| OLD | NEW |
| 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 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2010 Google Inc. All rights reserved. | 5 * Copyright (C) 2010 Google Inc. All rights 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 17 matching lines...) Expand all Loading... |
| 28 #include "core/layout/BackgroundBleedAvoidance.h" | 28 #include "core/layout/BackgroundBleedAvoidance.h" |
| 29 #include "core/layout/ContentChangeType.h" | 29 #include "core/layout/ContentChangeType.h" |
| 30 #include "core/layout/LayoutObject.h" | 30 #include "core/layout/LayoutObject.h" |
| 31 #include "core/page/scrolling/StickyPositionScrollingConstraints.h" | 31 #include "core/page/scrolling/StickyPositionScrollingConstraints.h" |
| 32 #include "platform/geometry/LayoutRect.h" | 32 #include "platform/geometry/LayoutRect.h" |
| 33 #include "wtf/PtrUtil.h" | 33 #include "wtf/PtrUtil.h" |
| 34 #include <memory> | 34 #include <memory> |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class LineLayoutBoxModel; | |
| 39 class PaintLayer; | 38 class PaintLayer; |
| 40 class PaintLayerScrollableArea; | 39 class PaintLayerScrollableArea; |
| 41 | 40 |
| 42 enum PaintLayerType { | 41 enum PaintLayerType { |
| 43 NoPaintLayer, | 42 NoPaintLayer, |
| 44 NormalPaintLayer, | 43 NormalPaintLayer, |
| 45 // A forced or overflow clip layer is required for bookkeeping purposes, | 44 // A forced or overflow clip layer is required for bookkeeping purposes, |
| 46 // but does not force a layer to be self painting. | 45 // but does not force a layer to be self painting. |
| 47 OverflowClipPaintLayer, | 46 OverflowClipPaintLayer, |
| 48 ForcedPaintLayer | 47 ForcedPaintLayer |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 std::unique_ptr<PaintLayer> m_layer; | 515 std::unique_ptr<PaintLayer> m_layer; |
| 517 | 516 |
| 518 std::unique_ptr<LayoutBoxModelObjectRareData> m_rareData; | 517 std::unique_ptr<LayoutBoxModelObjectRareData> m_rareData; |
| 519 }; | 518 }; |
| 520 | 519 |
| 521 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); | 520 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); |
| 522 | 521 |
| 523 } // namespace blink | 522 } // namespace blink |
| 524 | 523 |
| 525 #endif // LayoutBoxModelObject_h | 524 #endif // LayoutBoxModelObject_h |
| OLD | NEW |