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

  /external/webkit/Source/WebCore/html/
HTMLAudioElement.h 38 class HTMLAudioElement : public HTMLMediaElement {
40 static PassRefPtr<HTMLAudioElement> create(const QualifiedName&, Document*);
41 static PassRefPtr<HTMLAudioElement> createForJSConstructor(Document*, const String& src);
44 HTMLAudioElement(const QualifiedName&, Document*);
HTMLAudioElement.cpp 30 #include "HTMLAudioElement.h"
38 HTMLAudioElement::HTMLAudioElement(const QualifiedName& tagName, Document* document)
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(audioTag, document))
    [all...]

Completed in 1587 milliseconds