| 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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 void getTransformFromContainer(const RenderObject* container, const LayoutSi
ze& offsetInContainer, TransformationMatrix&) const; | 642 void getTransformFromContainer(const RenderObject* container, const LayoutSi
ze& offsetInContainer, TransformationMatrix&) const; |
| 643 | 643 |
| 644 bool createsGroup() const { return isTransparent() || hasMask() || hasFilter
(); } | 644 bool createsGroup() const { return isTransparent() || hasMask() || hasFilter
(); } |
| 645 | 645 |
| 646 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint& /* addit
ionalOffset */, const RenderLayerModelObject* /* paintContainer */ = 0) const {
}; | 646 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint& /* addit
ionalOffset */, const RenderLayerModelObject* /* paintContainer */ = 0) const {
}; |
| 647 | 647 |
| 648 RespectImageOrientationEnum shouldRespectImageOrientation() const; | 648 RespectImageOrientationEnum shouldRespectImageOrientation() const; |
| 649 | 649 |
| 650 bool isRelayoutBoundaryForInspector() const; | 650 bool isRelayoutBoundaryForInspector() const; |
| 651 | 651 |
| 652 void scheduleVisualUpdate(); | |
| 653 | |
| 654 bool onlyNeededPositionedMovementLayout() const { return m_bitfields.onlyNee
dedPositionedMovementLayout(); } | 652 bool onlyNeededPositionedMovementLayout() const { return m_bitfields.onlyNee
dedPositionedMovementLayout(); } |
| 655 void setOnlyNeededPositionedMovementLayout(bool b) { m_bitfields.setOnlyNeed
edPositionedMovementLayout(b); } | 653 void setOnlyNeededPositionedMovementLayout(bool b) { m_bitfields.setOnlyNeed
edPositionedMovementLayout(b); } |
| 656 | 654 |
| 657 bool neededLayoutBecauseOfChildren() const { return m_bitfields.neededLayout
BecauseOfChildren(); } | 655 bool neededLayoutBecauseOfChildren() const { return m_bitfields.neededLayout
BecauseOfChildren(); } |
| 658 void setNeededLayoutBecauseOfChildren(bool b) { m_bitfields.setNeededLayoutB
ecauseOfChildren(b); } | 656 void setNeededLayoutBecauseOfChildren(bool b) { m_bitfields.setNeededLayoutB
ecauseOfChildren(b); } |
| 659 | 657 |
| 660 void setNeedsOverflowRecalcAfterStyleChange(); | 658 void setNeedsOverflowRecalcAfterStyleChange(); |
| 661 void markContainingBlocksForOverflowRecalc(); | 659 void markContainingBlocksForOverflowRecalc(); |
| 662 | 660 |
| 663 protected: | 661 protected: |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 void showTree(const blink::RenderObject*); | 932 void showTree(const blink::RenderObject*); |
| 935 void showLineTree(const blink::RenderObject*); | 933 void showLineTree(const blink::RenderObject*); |
| 936 void showRenderTree(const blink::RenderObject* object1); | 934 void showRenderTree(const blink::RenderObject* object1); |
| 937 // We don't make object2 an optional parameter so that showRenderTree | 935 // We don't make object2 an optional parameter so that showRenderTree |
| 938 // can be called from gdb easily. | 936 // can be called from gdb easily. |
| 939 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); | 937 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); |
| 940 | 938 |
| 941 #endif | 939 #endif |
| 942 | 940 |
| 943 #endif // SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ | 941 #endif // SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ |
| OLD | NEW |