summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/Attr.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2008-10-21 07:00:00 -0700
commit9364f22aed35e1a1e9d07c121510f80be3ab0502 (patch)
treed49911209b132da58d838efa852daf28d516df21 /WebCore/dom/Attr.h
parent87eb0cb35bad8784770ebc807e6c982432e47107 (diff)
downloadexternal_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.zip
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.gz
external_webkit-9364f22aed35e1a1e9d07c121510f80be3ab0502.tar.bz2
Initial Contribution
Diffstat (limited to 'WebCore/dom/Attr.h')
-rw-r--r--WebCore/dom/Attr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/dom/Attr.h b/WebCore/dom/Attr.h
index d71a79e..9ade207 100644
--- a/WebCore/dom/Attr.h
+++ b/WebCore/dom/Attr.h
@@ -46,7 +46,7 @@ class Attr : public ContainerNode {
friend class NamedAttrMap;
public:
- Attr(Element*, Document*, PassRefPtr<Attribute>);
+ Attr(Element*, Document*, Attribute*);
~Attr();
// Call this after calling the constructor so the
@@ -77,7 +77,7 @@ public:
virtual bool isAttributeNode() const { return true; }
virtual bool childTypeAllowed(NodeType);
- virtual void childrenChanged(bool changedByParser = false, Node* beforeChange = 0, Node* afterChange = 0, int childCountDelta = 0);
+ virtual void childrenChanged(bool changedByParser = false);
virtual String toString() const;
Attribute* attr() const { return m_attribute.get(); }