summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/ContainerNode.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/ContainerNode.h')
-rw-r--r--Source/WebCore/dom/ContainerNode.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/WebCore/dom/ContainerNode.h b/Source/WebCore/dom/ContainerNode.h
index 743120abf..f9ec37798 100644
--- a/Source/WebCore/dom/ContainerNode.h
+++ b/Source/WebCore/dom/ContainerNode.h
@@ -75,6 +75,7 @@ public:
virtual void attach() OVERRIDE;
virtual void detach() OVERRIDE;
+ virtual LayoutRect boundingBox() const OVERRIDE;
virtual void setFocus(bool = true) OVERRIDE;
virtual void setActive(bool active = true, bool pause = false) OVERRIDE;
virtual void setHovered(bool = true) OVERRIDE;
@@ -104,8 +105,8 @@ public:
{
MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM);
Node::reportMemoryUsage(memoryObjectInfo);
- info.addInstrumentedMember(m_firstChild);
- info.addInstrumentedMember(m_lastChild);
+ info.addMember(m_firstChild);
+ info.addMember(m_lastChild);
}
protected:
@@ -131,6 +132,9 @@ private:
static void dispatchPostAttachCallbacks();
+ bool getUpperLeftCorner(FloatPoint&) const;
+ bool getLowerRightCorner(FloatPoint&) const;
+
Node* m_firstChild;
Node* m_lastChild;
};