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 1060 matching lines...) Loading... |
1071 private: | 1071 private: |
1072 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* repaint
Container = 0, bool* repaintContainerSkipped = 0) const; | 1072 RenderBlock* containerForFixedPosition(const RenderLayerModelObject* repaint
Container = 0, bool* repaintContainerSkipped = 0) const; |
1073 | 1073 |
1074 RenderFlowThread* locateFlowThreadContainingBlock() const; | 1074 RenderFlowThread* locateFlowThreadContainingBlock() const; |
1075 void removeFromRenderFlowThread(); | 1075 void removeFromRenderFlowThread(); |
1076 void removeFromRenderFlowThreadRecursive(RenderFlowThread*); | 1076 void removeFromRenderFlowThreadRecursive(RenderFlowThread*); |
1077 | 1077 |
1078 bool hasImmediateNonWhitespaceTextChildOrPropertiesDependentOnColor() const; | 1078 bool hasImmediateNonWhitespaceTextChildOrPropertiesDependentOnColor() const; |
1079 | 1079 |
1080 RenderStyle* cachedFirstLineStyle() const; | 1080 RenderStyle* cachedFirstLineStyle() const; |
1081 StyleDifference adjustStyleDifference(StyleDifference, unsigned contextSensi
tiveProperties) const; | 1081 StyleDifference adjustStyleDifference(StyleDifference) const; |
1082 | 1082 |
1083 Color selectionColor(int colorProperty) const; | 1083 Color selectionColor(int colorProperty) const; |
1084 | 1084 |
1085 void removeShapeImageClient(ShapeValue*); | 1085 void removeShapeImageClient(ShapeValue*); |
1086 | 1086 |
1087 #ifndef NDEBUG | 1087 #ifndef NDEBUG |
1088 void checkBlockPositionedObjectsNeedLayout(); | 1088 void checkBlockPositionedObjectsNeedLayout(); |
1089 #endif | 1089 #endif |
1090 const char* invalidationReasonToString(InvalidationReason) const; | 1090 const char* invalidationReasonToString(InvalidationReason) const; |
1091 | 1091 |
(...skipping 350 matching lines...) Loading... |
1442 void showTree(const WebCore::RenderObject*); | 1442 void showTree(const WebCore::RenderObject*); |
1443 void showLineTree(const WebCore::RenderObject*); | 1443 void showLineTree(const WebCore::RenderObject*); |
1444 void showRenderTree(const WebCore::RenderObject* object1); | 1444 void showRenderTree(const WebCore::RenderObject* object1); |
1445 // We don't make object2 an optional parameter so that showRenderTree | 1445 // We don't make object2 an optional parameter so that showRenderTree |
1446 // can be called from gdb easily. | 1446 // can be called from gdb easily. |
1447 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); | 1447 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO
bject* object2); |
1448 | 1448 |
1449 #endif | 1449 #endif |
1450 | 1450 |
1451 #endif // RenderObject_h | 1451 #endif // RenderObject_h |
OLD | NEW |