summaryrefslogtreecommitdiffstats
path: root/WebCore/dom/NodeFilterCondition.h
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2009-08-11 17:01:47 +0100
committerBen Murdoch <benm@google.com>2009-08-11 18:21:02 +0100
commit0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5 (patch)
tree2943df35f62d885c89d01063cc528dd73b480fea /WebCore/dom/NodeFilterCondition.h
parent7e7a70bfa49a1122b2597a1e6367d89eb4035eca (diff)
downloadexternal_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.zip
external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.gz
external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.bz2
Merge in WebKit r47029.
Diffstat (limited to 'WebCore/dom/NodeFilterCondition.h')
-rw-r--r--WebCore/dom/NodeFilterCondition.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/WebCore/dom/NodeFilterCondition.h b/WebCore/dom/NodeFilterCondition.h
index c94cc9a..0d6313f 100644
--- a/WebCore/dom/NodeFilterCondition.h
+++ b/WebCore/dom/NodeFilterCondition.h
@@ -3,7 +3,7 @@
* Copyright (C) 2000 Frederik Holljen (frederik.holljen@hig.no)
* Copyright (C) 2001 Peter Kelly (pmk@post.com)
* Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
- * Copyright (C) 2004, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2004, 2008, 2009 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -28,6 +28,10 @@
#include "ScriptState.h"
#include <wtf/RefCounted.h>
+namespace JSC {
+ class MarkStack;
+}
+
namespace WebCore {
class Node;
@@ -36,7 +40,7 @@ namespace WebCore {
public:
virtual ~NodeFilterCondition() { }
virtual short acceptNode(ScriptState*, Node*) const = 0;
- virtual void mark() { }
+ virtual void markAggregate(JSC::MarkStack&) { }
};
} // namespace WebCore