OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) | 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) |
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. |
7 * All rights reserved. | 7 * All rights reserved. |
8 * Copyright (C) 2009 Google Inc. All rights reserved. | 8 * Copyright (C) 2009 Google Inc. All rights reserved. |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 13 matching lines...) Expand all Loading... |
24 * | 24 * |
25 */ | 25 */ |
26 | 26 |
27 #ifndef LayoutObject_h | 27 #ifndef LayoutObject_h |
28 #define LayoutObject_h | 28 #define LayoutObject_h |
29 | 29 |
30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
31 #include "core/dom/Document.h" | 31 #include "core/dom/Document.h" |
32 #include "core/dom/DocumentLifecycle.h" | 32 #include "core/dom/DocumentLifecycle.h" |
33 #include "core/editing/PositionWithAffinity.h" | 33 #include "core/editing/PositionWithAffinity.h" |
34 #include "core/fetch/ImageResourceObserver.h" | |
35 #include "core/layout/LayoutObjectChildList.h" | 34 #include "core/layout/LayoutObjectChildList.h" |
36 #include "core/layout/MapCoordinatesFlags.h" | 35 #include "core/layout/MapCoordinatesFlags.h" |
37 #include "core/layout/PaintInvalidationState.h" | 36 #include "core/layout/PaintInvalidationState.h" |
38 #include "core/layout/ScrollAlignment.h" | 37 #include "core/layout/ScrollAlignment.h" |
39 #include "core/layout/SubtreeLayoutScope.h" | 38 #include "core/layout/SubtreeLayoutScope.h" |
40 #include "core/layout/api/HitTestAction.h" | 39 #include "core/layout/api/HitTestAction.h" |
41 #include "core/layout/api/SelectionState.h" | 40 #include "core/layout/api/SelectionState.h" |
42 #include "core/layout/compositing/CompositingState.h" | 41 #include "core/layout/compositing/CompositingState.h" |
| 42 #include "core/loader/resource/ImageResourceObserver.h" |
43 #include "core/paint/LayerHitTestRects.h" | 43 #include "core/paint/LayerHitTestRects.h" |
44 #include "core/paint/PaintPhase.h" | 44 #include "core/paint/PaintPhase.h" |
45 #include "core/style/ComputedStyle.h" | 45 #include "core/style/ComputedStyle.h" |
46 #include "platform/geometry/FloatQuad.h" | 46 #include "platform/geometry/FloatQuad.h" |
47 #include "platform/geometry/LayoutRect.h" | 47 #include "platform/geometry/LayoutRect.h" |
48 #include "platform/graphics/CompositingReasons.h" | 48 #include "platform/graphics/CompositingReasons.h" |
49 #include "platform/graphics/PaintInvalidationReason.h" | 49 #include "platform/graphics/PaintInvalidationReason.h" |
50 #include "platform/graphics/paint/DisplayItemClient.h" | 50 #include "platform/graphics/paint/DisplayItemClient.h" |
51 #include "platform/transforms/TransformationMatrix.h" | 51 #include "platform/transforms/TransformationMatrix.h" |
52 #include "wtf/AutoReset.h" | 52 #include "wtf/AutoReset.h" |
(...skipping 2604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2657 CORE_EXPORT void showLineTree(const blink::LayoutObject*); | 2657 CORE_EXPORT void showLineTree(const blink::LayoutObject*); |
2658 CORE_EXPORT void showLayoutTree(const blink::LayoutObject* object1); | 2658 CORE_EXPORT void showLayoutTree(const blink::LayoutObject* object1); |
2659 // We don't make object2 an optional parameter so that showLayoutTree | 2659 // We don't make object2 an optional parameter so that showLayoutTree |
2660 // can be called from gdb easily. | 2660 // can be called from gdb easily. |
2661 CORE_EXPORT void showLayoutTree(const blink::LayoutObject* object1, | 2661 CORE_EXPORT void showLayoutTree(const blink::LayoutObject* object1, |
2662 const blink::LayoutObject* object2); | 2662 const blink::LayoutObject* object2); |
2663 | 2663 |
2664 #endif | 2664 #endif |
2665 | 2665 |
2666 #endif // LayoutObject_h | 2666 #endif // LayoutObject_h |
OLD | NEW |