Searched defs:HTMLAudioElement (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLAudioElement.h38 class HTMLAudioElement : public HTMLMediaElement { class in namespace:WebCore
40 static PassRefPtr<HTMLAudioElement> create(const QualifiedName&, Document*);
41 static PassRefPtr<HTMLAudioElement> createForJSConstructor(Document*, const String& src);
44 HTMLAudioElement(const QualifiedName&, Document*);
H A DHTMLAudioElement.cpp30 #include "HTMLAudioElement.h"
38 HTMLAudioElement::HTMLAudioElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLAudioElement
44 PassRefPtr<HTMLAudioElement> HTMLAudioElement::create(const QualifiedName& tagName, Document* document)
46 return adoptRef(new HTMLAudioElement(tagName, document));
49 PassRefPtr<HTMLAudioElement> HTMLAudioElement::createForJSConstructor(Document* document, const String& src)
51 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(audioTa
[all...]

Completed in 76 milliseconds