| Index: Source/core/dom/Document.h | 
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h | 
| index 0c183b7a0d52a23896ec5b0f2d1221111b5d4a8b..fc75a19b7ad2b6313cb90d53b917dc5320fae585 100644 | 
| --- a/Source/core/dom/Document.h | 
| +++ b/Source/core/dom/Document.h | 
| @@ -1489,24 +1489,6 @@ inline bool Node::isDocumentNode() const | 
| return this == documentInternal(); | 
| } | 
|  | 
| -inline Node::Node(Document* document, ConstructionType type) | 
| -    : m_nodeFlags(type) | 
| -    , m_parentOrShadowHostNode(0) | 
| -    , m_treeScope(document) | 
| -    , m_previous(0) | 
| -    , m_next(0) | 
| -{ | 
| -    ScriptWrappable::init(this); | 
| -    if (!m_treeScope) | 
| -        m_treeScope = TreeScope::noDocumentInstance(); | 
| -    m_treeScope->guardRef(); | 
| - | 
| -#if !defined(NDEBUG) || (defined(DUMP_NODE_STATISTICS) && DUMP_NODE_STATISTICS) | 
| -    trackForDebugging(); | 
| -#endif | 
| -    InspectorCounters::incrementCounter(InspectorCounters::NodeCounter); | 
| -} | 
| - | 
| Node* eventTargetNodeForDocument(Document*); | 
|  | 
| } // namespace WebCore | 
|  |