blob: e9425bcd61cf731cf8386fb8a4f1d5c0cd70d60a [file] [log] [blame]
/*
This file is part of the WebKit open source project.
This file has been generated by generate-bindings.pl. DO NOT MODIFY!
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#pragma once
#include "ActiveDOMCallback.h"
#include "JSCallbackData.h"
#include "NodeFilter.h"
#include <wtf/Forward.h>
namespace WebCore {
class JSNodeFilter : public NodeFilter, public ActiveDOMCallback {
public:
static Ref<JSNodeFilter> create(JSC::JSObject* callback, JSDOMGlobalObject* globalObject)
{
return adoptRef(*new JSNodeFilter(callback, globalObject));
}
virtual ScriptExecutionContext* scriptExecutionContext() const { return ContextDestructionObserver::scriptExecutionContext(); }
virtual ~JSNodeFilter();
JSCallbackDataWeak* callbackData() { return m_data; }
static JSC::JSValue getConstructor(JSC::VM&, const JSC::JSGlobalObject*);
// Functions
virtual uint16_t acceptNode(Node* node);
private:
JSNodeFilter(JSC::JSObject* callback, JSDOMGlobalObject*);
JSCallbackDataWeak* m_data;
};
JSC::JSValue toJS(JSC::ExecState*, JSDOMGlobalObject*, NodeFilter&);
inline JSC::JSValue toJS(JSC::ExecState* state, JSDOMGlobalObject* globalObject, NodeFilter* impl) { return impl ? toJS(state, globalObject, *impl) : JSC::jsNull(); }
} // namespace WebCore