| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 moveChildrenTo(toBoxModelObject, slowFirstChild(), 0, beforeChild, fullR
emoveInsert); | 347 moveChildrenTo(toBoxModelObject, slowFirstChild(), 0, beforeChild, fullR
emoveInsert); |
| 348 } | 348 } |
| 349 // Move all of the kids from |startChild| up to but excluding |endChild|. 0
can be passed as the |endChild| to denote | 349 // Move all of the kids from |startChild| up to but excluding |endChild|. 0
can be passed as the |endChild| to denote |
| 350 // that all the kids from |startChild| onwards should be moved. | 350 // that all the kids from |startChild| onwards should be moved. |
| 351 void moveChildrenTo(LayoutBoxModelObject* toBoxModelObject, LayoutObject* st
artChild, LayoutObject* endChild, bool fullRemoveInsert = false) | 351 void moveChildrenTo(LayoutBoxModelObject* toBoxModelObject, LayoutObject* st
artChild, LayoutObject* endChild, bool fullRemoveInsert = false) |
| 352 { | 352 { |
| 353 moveChildrenTo(toBoxModelObject, startChild, endChild, 0, fullRemoveInse
rt); | 353 moveChildrenTo(toBoxModelObject, startChild, endChild, 0, fullRemoveInse
rt); |
| 354 } | 354 } |
| 355 virtual void moveChildrenTo(LayoutBoxModelObject* toBoxModelObject, LayoutOb
ject* startChild, LayoutObject* endChild, LayoutObject* beforeChild, bool fullRe
moveInsert = false); | 355 virtual void moveChildrenTo(LayoutBoxModelObject* toBoxModelObject, LayoutOb
ject* startChild, LayoutObject* endChild, LayoutObject* beforeChild, bool fullRe
moveInsert = false); |
| 356 | 356 |
| 357 enum ScaleByEffectiveZoomOrNot { ScaleByEffectiveZoom, DoNotScaleByEffective
Zoom }; | |
| 358 LayoutSize calculateImageIntrinsicDimensions(StyleImage*, const LayoutSize&
scaledPositioningAreaSize, ScaleByEffectiveZoomOrNot) const; | |
| 359 | |
| 360 private: | 357 private: |
| 361 void createLayer(PaintLayerType); | 358 void createLayer(PaintLayerType); |
| 362 | 359 |
| 363 LayoutUnit computedCSSPadding(const Length&) const; | 360 LayoutUnit computedCSSPadding(const Length&) const; |
| 364 bool isBoxModelObject() const final { return true; } | 361 bool isBoxModelObject() const final { return true; } |
| 365 | 362 |
| 366 // The PaintLayer associated with this object. | 363 // The PaintLayer associated with this object. |
| 367 // |m_layer| can be nullptr depending on the return value of layerTypeRequir
ed(). | 364 // |m_layer| can be nullptr depending on the return value of layerTypeRequir
ed(). |
| 368 OwnPtr<PaintLayer> m_layer; | 365 OwnPtr<PaintLayer> m_layer; |
| 369 }; | 366 }; |
| 370 | 367 |
| 371 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); | 368 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); |
| 372 | 369 |
| 373 } // namespace blink | 370 } // namespace blink |
| 374 | 371 |
| 375 #endif // LayoutBoxModelObject_h | 372 #endif // LayoutBoxModelObject_h |
| OLD | NEW |