~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/bindings/js/JSNodeFilterCondition.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090515183058-50q5exjo9b1kxy9s
Tags: 1.1.7-1
* New upstream release
* debian/libwebkit-1.0-2.symbols:
- updated with the new symbols in 1.1.7
* debian/libwebkit-dev.install, debian/libwebkit-dev.links,
  debian/rules:
- Build, and ship gtk-doc documentation (Closes: #526683)
* debian/copyright:
- updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
    class JSNodeFilterCondition : public NodeFilterCondition {
32
32
    public:
33
 
        static PassRefPtr<JSNodeFilterCondition> create(JSC::JSValuePtr filter)
 
33
        static PassRefPtr<JSNodeFilterCondition> create(JSC::JSValue filter)
34
34
        {
35
35
            return adoptRef(new JSNodeFilterCondition(filter));
36
36
        }
37
37
 
38
38
    private:
39
 
        JSNodeFilterCondition(JSC::JSValuePtr filter);
 
39
        JSNodeFilterCondition(JSC::JSValue filter);
40
40
 
41
41
        virtual short acceptNode(ScriptState*, Node*) const;
42
42
        virtual void mark();
43
43
 
44
 
        mutable JSC::JSValuePtr m_filter;
 
44
        mutable JSC::JSValue m_filter;
45
45
    };
46
46
 
47
47
} // namespace WebCore