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 10 matching lines...) Expand all Loading... |
21 * | 21 * |
22 */ | 22 */ |
23 | 23 |
24 #ifndef LayoutBoxModelObject_h | 24 #ifndef LayoutBoxModelObject_h |
25 #define LayoutBoxModelObject_h | 25 #define LayoutBoxModelObject_h |
26 | 26 |
27 #include "core/CoreExport.h" | 27 #include "core/CoreExport.h" |
28 #include "core/layout/BackgroundBleedAvoidance.h" | 28 #include "core/layout/BackgroundBleedAvoidance.h" |
29 #include "core/layout/LayoutObject.h" | 29 #include "core/layout/LayoutObject.h" |
30 #include "core/page/scrolling/StickyPositionScrollingConstraints.h" | 30 #include "core/page/scrolling/StickyPositionScrollingConstraints.h" |
31 #include "core/style/ShadowData.h" | |
32 #include "platform/geometry/LayoutRect.h" | 31 #include "platform/geometry/LayoutRect.h" |
33 | 32 |
34 namespace blink { | 33 namespace blink { |
35 | 34 |
36 class LineLayoutBoxModel; | 35 class LineLayoutBoxModel; |
37 class PaintLayer; | 36 class PaintLayer; |
38 class PaintLayerScrollableArea; | 37 class PaintLayerScrollableArea; |
39 | 38 |
40 enum PaintLayerType { | 39 enum PaintLayerType { |
41 NoPaintLayer, | 40 NoPaintLayer, |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 OwnPtr<PaintLayer> m_layer; | 387 OwnPtr<PaintLayer> m_layer; |
389 | 388 |
390 OwnPtr<LayoutBoxModelObjectRareData> m_rareData; | 389 OwnPtr<LayoutBoxModelObjectRareData> m_rareData; |
391 }; | 390 }; |
392 | 391 |
393 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); | 392 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutBoxModelObject, isBoxModelObject()); |
394 | 393 |
395 } // namespace blink | 394 } // namespace blink |
396 | 395 |
397 #endif // LayoutBoxModelObject_h | 396 #endif // LayoutBoxModelObject_h |
OLD | NEW |