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. All r
ights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2009 Google Inc. All rights reserved. | 7 * Copyright (C) 2009 Google Inc. All rights reserved. |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
(...skipping 24 matching lines...) Expand all Loading... |
35 #include "core/html/HTMLElement.h" | 35 #include "core/html/HTMLElement.h" |
36 #include "core/inspector/InspectorTraceEvents.h" | 36 #include "core/inspector/InspectorTraceEvents.h" |
37 #include "core/layout/HitTestRequest.h" | 37 #include "core/layout/HitTestRequest.h" |
38 #include "core/layout/LayoutObjectChildList.h" | 38 #include "core/layout/LayoutObjectChildList.h" |
39 #include "core/layout/PaintInvalidationState.h" | 39 #include "core/layout/PaintInvalidationState.h" |
40 #include "core/layout/PaintPhase.h" | 40 #include "core/layout/PaintPhase.h" |
41 #include "core/layout/ScrollAlignment.h" | 41 #include "core/layout/ScrollAlignment.h" |
42 #include "core/layout/SubtreeLayoutScope.h" | 42 #include "core/layout/SubtreeLayoutScope.h" |
43 #include "core/layout/compositing/CompositingState.h" | 43 #include "core/layout/compositing/CompositingState.h" |
44 #include "core/layout/compositing/CompositingTriggers.h" | 44 #include "core/layout/compositing/CompositingTriggers.h" |
45 #include "core/layout/style/ComputedStyle.h" | 45 #include "core/style/ComputedStyle.h" |
46 #include "core/layout/style/StyleInheritedData.h" | 46 #include "core/style/StyleInheritedData.h" |
47 #include "platform/geometry/FloatQuad.h" | 47 #include "platform/geometry/FloatQuad.h" |
48 #include "platform/geometry/LayoutRect.h" | 48 #include "platform/geometry/LayoutRect.h" |
49 #include "platform/graphics/CompositingReasons.h" | 49 #include "platform/graphics/CompositingReasons.h" |
50 #include "platform/graphics/PaintInvalidationReason.h" | 50 #include "platform/graphics/PaintInvalidationReason.h" |
51 #include "platform/graphics/paint/DisplayItemClient.h" | 51 #include "platform/graphics/paint/DisplayItemClient.h" |
52 #include "platform/transforms/TransformationMatrix.h" | 52 #include "platform/transforms/TransformationMatrix.h" |
53 | 53 |
54 namespace blink { | 54 namespace blink { |
55 | 55 |
56 class AffineTransform; | 56 class AffineTransform; |
(...skipping 1604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1661 void showTree(const blink::LayoutObject*); | 1661 void showTree(const blink::LayoutObject*); |
1662 void showLineTree(const blink::LayoutObject*); | 1662 void showLineTree(const blink::LayoutObject*); |
1663 void showLayoutTree(const blink::LayoutObject* object1); | 1663 void showLayoutTree(const blink::LayoutObject* object1); |
1664 // We don't make object2 an optional parameter so that showLayoutTree | 1664 // We don't make object2 an optional parameter so that showLayoutTree |
1665 // can be called from gdb easily. | 1665 // can be called from gdb easily. |
1666 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); | 1666 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); |
1667 | 1667 |
1668 #endif | 1668 #endif |
1669 | 1669 |
1670 #endif // LayoutObject_h | 1670 #endif // LayoutObject_h |
OLD | NEW |