| 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 20 matching lines...) Expand all Loading... |
| 31 #include "core/dom/DocumentLifecycle.h" | 31 #include "core/dom/DocumentLifecycle.h" |
| 32 #include "core/editing/PositionWithAffinity.h" | 32 #include "core/editing/PositionWithAffinity.h" |
| 33 #include "core/fetch/ImageResourceObserver.h" | 33 #include "core/fetch/ImageResourceObserver.h" |
| 34 #include "core/layout/LayoutObjectChildList.h" | 34 #include "core/layout/LayoutObjectChildList.h" |
| 35 #include "core/layout/PaintInvalidationState.h" | 35 #include "core/layout/PaintInvalidationState.h" |
| 36 #include "core/layout/ScrollAlignment.h" | 36 #include "core/layout/ScrollAlignment.h" |
| 37 #include "core/layout/SubtreeLayoutScope.h" | 37 #include "core/layout/SubtreeLayoutScope.h" |
| 38 #include "core/layout/api/HitTestAction.h" | 38 #include "core/layout/api/HitTestAction.h" |
| 39 #include "core/layout/api/SelectionState.h" | 39 #include "core/layout/api/SelectionState.h" |
| 40 #include "core/layout/compositing/CompositingState.h" | 40 #include "core/layout/compositing/CompositingState.h" |
| 41 #include "core/paint/PaintPhase.h" |
| 41 #include "core/style/ComputedStyle.h" | 42 #include "core/style/ComputedStyle.h" |
| 42 #include "platform/geometry/FloatQuad.h" | 43 #include "platform/geometry/FloatQuad.h" |
| 43 #include "platform/geometry/LayoutRect.h" | 44 #include "platform/geometry/LayoutRect.h" |
| 44 #include "platform/graphics/CompositingReasons.h" | 45 #include "platform/graphics/CompositingReasons.h" |
| 45 #include "platform/graphics/PaintInvalidationReason.h" | 46 #include "platform/graphics/PaintInvalidationReason.h" |
| 46 #include "platform/graphics/paint/DisplayItemClient.h" | 47 #include "platform/graphics/paint/DisplayItemClient.h" |
| 47 #include "platform/transforms/TransformationMatrix.h" | 48 #include "platform/transforms/TransformationMatrix.h" |
| 48 | 49 |
| 49 namespace blink { | 50 namespace blink { |
| 50 | 51 |
| (...skipping 2129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2180 void showTree(const blink::LayoutObject*); | 2181 void showTree(const blink::LayoutObject*); |
| 2181 void showLineTree(const blink::LayoutObject*); | 2182 void showLineTree(const blink::LayoutObject*); |
| 2182 void showLayoutTree(const blink::LayoutObject* object1); | 2183 void showLayoutTree(const blink::LayoutObject* object1); |
| 2183 // We don't make object2 an optional parameter so that showLayoutTree | 2184 // We don't make object2 an optional parameter so that showLayoutTree |
| 2184 // can be called from gdb easily. | 2185 // can be called from gdb easily. |
| 2185 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); | 2186 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); |
| 2186 | 2187 |
| 2187 #endif | 2188 #endif |
| 2188 | 2189 |
| 2189 #endif // LayoutObject_h | 2190 #endif // LayoutObject_h |
| OLD | NEW |