Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Unified Diff: third_party/WebKit/WebCore/dom/ContainerNode.h

Issue 21165: Revert the merge. Mac build is mysteriously broken. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/WebCore/dom/CharacterData.idl ('k') | third_party/WebKit/WebCore/dom/ContainerNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/WebCore/dom/ContainerNode.h
===================================================================
--- third_party/WebKit/WebCore/dom/ContainerNode.h (revision 9383)
+++ third_party/WebKit/WebCore/dom/ContainerNode.h (working copy)
@@ -24,7 +24,7 @@
#ifndef ContainerNode_h
#define ContainerNode_h
-#include "Node.h"
+#include "EventTargetNode.h"
#include "FloatPoint.h"
namespace WebCore {
@@ -36,7 +36,7 @@
void addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer* container);
};
-class ContainerNode : public Node {
+class ContainerNode : public EventTargetNode {
public:
ContainerNode(Document*, bool isElement = false);
virtual ~ContainerNode();
@@ -98,7 +98,7 @@
};
inline ContainerNode::ContainerNode(Document* document, bool isElement)
- : Node(document, isElement, true)
+ : EventTargetNode(document, isElement, true)
, m_firstChild(0)
, m_lastChild(0)
{
« no previous file with comments | « third_party/WebKit/WebCore/dom/CharacterData.idl ('k') | third_party/WebKit/WebCore/dom/ContainerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698