From 9364f22aed35e1a1e9d07c121510f80be3ab0502 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 21 Oct 2008 07:00:00 -0700 Subject: Initial Contribution --- WebCore/bindings/objc/DOMCustomXPathNSResolver.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'WebCore/bindings/objc/DOMCustomXPathNSResolver.h') diff --git a/WebCore/bindings/objc/DOMCustomXPathNSResolver.h b/WebCore/bindings/objc/DOMCustomXPathNSResolver.h index 2609e90..47cd939 100644 --- a/WebCore/bindings/objc/DOMCustomXPathNSResolver.h +++ b/WebCore/bindings/objc/DOMCustomXPathNSResolver.h @@ -31,7 +31,6 @@ #include "XPathNSResolver.h" #include "DOMXPathNSResolver.h" -#include namespace WebCore { @@ -39,14 +38,13 @@ namespace WebCore { class DOMCustomXPathNSResolver : public XPathNSResolver { public: - static PassRefPtr create(id customResolver) { return adoptRef(new DOMCustomXPathNSResolver(customResolver)); } + DOMCustomXPathNSResolver(id ); virtual ~DOMCustomXPathNSResolver(); virtual String lookupNamespaceURI(const String& prefix); private: - DOMCustomXPathNSResolver(id ); - id m_customResolver; // DOMCustomXPathNSResolvers are always temporary, thus no need to GC protect the object. + id m_customResolver; // DOMCustomXPathNSResolvers are always temporary, thus no need to GC protect the object. }; } // namespace WebCore -- cgit v1.1