| 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 12 matching lines...) Expand all Loading... |
| 23 * | 23 * |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef LayoutObject_h | 26 #ifndef LayoutObject_h |
| 27 #define LayoutObject_h | 27 #define LayoutObject_h |
| 28 | 28 |
| 29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
| 30 #include "core/dom/Document.h" | 30 #include "core/dom/Document.h" |
| 31 #include "core/dom/DocumentLifecycle.h" | 31 #include "core/dom/DocumentLifecycle.h" |
| 32 #include "core/dom/Element.h" | 32 #include "core/dom/Element.h" |
| 33 #include "core/dom/ImageResourceClient.h" |
| 33 #include "core/dom/Position.h" | 34 #include "core/dom/Position.h" |
| 34 #include "core/editing/PositionWithAffinity.h" | 35 #include "core/editing/PositionWithAffinity.h" |
| 35 #include "core/editing/TextAffinity.h" | 36 #include "core/editing/TextAffinity.h" |
| 36 #include "core/fetch/ImageResourceClient.h" | |
| 37 #include "core/html/HTMLElement.h" | 37 #include "core/html/HTMLElement.h" |
| 38 #include "core/inspector/InspectorTraceEvents.h" | 38 #include "core/inspector/InspectorTraceEvents.h" |
| 39 #include "core/layout/HitTestRequest.h" | 39 #include "core/layout/HitTestRequest.h" |
| 40 #include "core/layout/LayoutObjectChildList.h" | 40 #include "core/layout/LayoutObjectChildList.h" |
| 41 #include "core/layout/PaintInvalidationState.h" | 41 #include "core/layout/PaintInvalidationState.h" |
| 42 #include "core/layout/ScrollAlignment.h" | 42 #include "core/layout/ScrollAlignment.h" |
| 43 #include "core/layout/SubtreeLayoutScope.h" | 43 #include "core/layout/SubtreeLayoutScope.h" |
| 44 #include "core/layout/compositing/CompositingState.h" | 44 #include "core/layout/compositing/CompositingState.h" |
| 45 #include "core/layout/compositing/CompositingTriggers.h" | 45 #include "core/layout/compositing/CompositingTriggers.h" |
| 46 #include "core/style/ComputedStyle.h" | 46 #include "core/style/ComputedStyle.h" |
| (...skipping 1611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1658 void showTree(const blink::LayoutObject*); | 1658 void showTree(const blink::LayoutObject*); |
| 1659 void showLineTree(const blink::LayoutObject*); | 1659 void showLineTree(const blink::LayoutObject*); |
| 1660 void showLayoutTree(const blink::LayoutObject* object1); | 1660 void showLayoutTree(const blink::LayoutObject* object1); |
| 1661 // We don't make object2 an optional parameter so that showLayoutTree | 1661 // We don't make object2 an optional parameter so that showLayoutTree |
| 1662 // can be called from gdb easily. | 1662 // can be called from gdb easily. |
| 1663 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); | 1663 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec
t* object2); |
| 1664 | 1664 |
| 1665 #endif | 1665 #endif |
| 1666 | 1666 |
| 1667 #endif // LayoutObject_h | 1667 #endif // LayoutObject_h |
| OLD | NEW |