summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/Node.h
diff options
context:
space:
mode:
authorAndrei Popescu <andreip@google.com>2009-08-19 14:09:08 +0100
committerAndrei Popescu <andreip@google.com>2009-08-19 14:09:08 +0100
commit2796dd1bf3b4b01e7e1d96ea91bd3a212f647579 (patch)
treea3fa109aa5bf52fef562ac49d97a2f723889cc71 /WebCore/dom/Node.h
parent0a765b92b82dbcf0683bcdb9e18180e7957f7eda (diff)
downloadexternal_webkit-2796dd1bf3b4b01e7e1d96ea91bd3a212f647579.zip
external_webkit-2796dd1bf3b4b01e7e1d96ea91bd3a212f647579.tar.gz
external_webkit-2796dd1bf3b4b01e7e1d96ea91bd3a212f647579.tar.bz2
Revert "Compilation and link error fixes for new webkit r47420."
This reverts commit 632f4508222c2a617e6820e9388867c0f4821db8.
Diffstat (limited to 'WebCore/dom/Node.h')
-rw-r--r--WebCore/dom/Node.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/WebCore/dom/Node.h b/WebCore/dom/Node.h
index 054761e..d1f58dc 100644
--- a/WebCore/dom/Node.h
+++ b/WebCore/dom/Node.h
@@ -507,6 +507,19 @@ public:
static size_t reportDOMNodesSize();
#endif
+protected:
+ virtual void willMoveToNewOwnerDocument();
+ virtual void didMoveToNewOwnerDocument();
+
+ virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const { }
+ void setTabIndexExplicitly(short);
+
+ bool hasRareData() const { return m_hasRareData; }
+
+ NodeRareData* rareData() const;
+ NodeRareData* ensureRareData();
+
+public:
virtual Node* toNode() { return this; }
virtual ScriptExecutionContext* scriptExecutionContext() const;