HomeSort by relevance Sort by last modified time
    Searched defs:V8CustomXPathNSResolver (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CustomXPathNSResolver.h 46 // V8CustomXPathNSResolver does not create a persistent handle to the
47 // given resolver object. So the lifetime of V8CustomXPathNSResolver
49 class V8CustomXPathNSResolver : public XPathNSResolver {
51 static PassRefPtr<V8CustomXPathNSResolver> create(v8::Handle<v8::Object> resolver);
53 virtual ~V8CustomXPathNSResolver();
57 explicit V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver);
V8CustomXPathNSResolver.cpp 31 #include "V8CustomXPathNSResolver.h"
41 PassRefPtr<V8CustomXPathNSResolver> V8CustomXPathNSResolver::create(v8::Handle<v8::Object> resolver)
43 return adoptRef(new V8CustomXPathNSResolver(resolver));
46 V8CustomXPathNSResolver::V8CustomXPathNSResolver(v8::Handle<v8::Object> resolver)
51 V8CustomXPathNSResolver::~V8CustomXPathNSResolver()
55 String V8CustomXPathNSResolver::lookupNamespaceURI(const String& prefix)

Completed in 179 milliseconds