| 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 964 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 void setOldRepaintRect(const LayoutRect& rect) { m_oldRepaintRect = rect; } | 975 void setOldRepaintRect(const LayoutRect& rect) { m_oldRepaintRect = rect; } |
| 976 | 976 |
| 977 LayoutRect newOutlineRect(); | 977 LayoutRect newOutlineRect(); |
| 978 void setNewOutlineRect(const LayoutRect&); | 978 void setNewOutlineRect(const LayoutRect&); |
| 979 | 979 |
| 980 LayoutRect oldOutlineRect(); | 980 LayoutRect oldOutlineRect(); |
| 981 void setOldOutlineRect(const LayoutRect&); | 981 void setOldOutlineRect(const LayoutRect&); |
| 982 | 982 |
| 983 bool shouldDoFullRepaintAfterLayout() const { return m_bitfields.shouldDoFul
lRepaintAfterLayout(); } | 983 bool shouldDoFullRepaintAfterLayout() const { return m_bitfields.shouldDoFul
lRepaintAfterLayout(); } |
| 984 void setShouldDoFullRepaintAfterLayout(bool b) { m_bitfields.setShouldDoFull
RepaintAfterLayout(b); } | 984 void setShouldDoFullRepaintAfterLayout(bool b) { m_bitfields.setShouldDoFull
RepaintAfterLayout(b); } |
| 985 void updateShouldDoFullRepaintAfterLayout(); |
| 985 bool shouldRepaintOverflow() const { return m_bitfields.shouldRepaintOverflo
w(); } | 986 bool shouldRepaintOverflow() const { return m_bitfields.shouldRepaintOverflo
w(); } |
| 986 | 987 |
| 987 bool shouldDoFullRepaintIfSelfPaintingLayer() const { return m_bitfields.sho
uldDoFullRepaintIfSelfPaintingLayer(); } | 988 bool shouldDoFullRepaintIfSelfPaintingLayer() const { return m_bitfields.sho
uldDoFullRepaintIfSelfPaintingLayer(); } |
| 988 void setShouldDoFullRepaintIfSelfPaintingLayer(bool b) { m_bitfields.setShou
ldDoFullRepaintIfSelfPaintingLayer(b); } | 989 void setShouldDoFullRepaintIfSelfPaintingLayer(bool b) { m_bitfields.setShou
ldDoFullRepaintIfSelfPaintingLayer(b); } |
| 989 | 990 |
| 990 bool onlyNeededPositionedMovementLayout() const { return m_bitfields.onlyNee
dedPositionedMovementLayout(); } | 991 bool onlyNeededPositionedMovementLayout() const { return m_bitfields.onlyNee
dedPositionedMovementLayout(); } |
| 991 void setOnlyNeededPositionedMovementLayout(bool b) { m_bitfields.setOnlyNeed
edPositionedMovementLayout(b); } | 992 void setOnlyNeededPositionedMovementLayout(bool b) { m_bitfields.setOnlyNeed
edPositionedMovementLayout(b); } |
| 992 | 993 |
| 993 void clearRepaintState(); | 994 void clearRepaintState(); |
| 994 | 995 |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1426 void showTree(const WebCore::RenderObject*); | 1427 void showTree(const WebCore::RenderObject*); |
| 1427 void showLineTree(const WebCore::RenderObject*); | 1428 void showLineTree(const WebCore::RenderObject*); |
| 1428 void showRenderTree(const WebCore::RenderObject* object1); | 1429 void showRenderTree(const WebCore::RenderObject* object1); |
| 1429 // We don't make object2 an optional parameter so that showRenderTree | 1430 // We don't make object2 an optional parameter so that showRenderTree |
| 1430 // can be called from gdb easily. | 1431 // can be called from gdb easily. |
| 1431 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1432 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
| 1432 | 1433 |
| 1433 #endif | 1434 #endif |
| 1434 | 1435 |
| 1435 #endif // RenderObject_h | 1436 #endif // RenderObject_h |
| OLD | NEW |