| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "core/html/HTMLAudioElement.h" | 27 #include "core/html/HTMLAudioElement.h" |
| 28 | 28 |
| 29 #include "HTMLNames.h" | 29 #include "HTMLNames.h" |
| 30 | 30 |
| 31 namespace WebCore { | 31 namespace WebCore { |
| 32 | 32 |
| 33 using namespace HTMLNames; | 33 using namespace HTMLNames; |
| 34 | 34 |
| 35 HTMLAudioElement::HTMLAudioElement(const QualifiedName& tagName, Document* docum
ent, bool createdByParser) | 35 HTMLAudioElement::HTMLAudioElement(const QualifiedName& tagName, Document& docum
ent, bool createdByParser) |
| 36 : HTMLMediaElement(tagName, document, createdByParser) | 36 : HTMLMediaElement(tagName, document, createdByParser) |
| 37 { | 37 { |
| 38 ASSERT(hasTagName(audioTag)); | 38 ASSERT(hasTagName(audioTag)); |
| 39 ScriptWrappable::init(this); | 39 ScriptWrappable::init(this); |
| 40 } | 40 } |
| 41 | 41 |
| 42 PassRefPtr<HTMLAudioElement> HTMLAudioElement::create(const QualifiedName& tagNa
me, Document* document, bool createdByParser) | 42 PassRefPtr<HTMLAudioElement> HTMLAudioElement::create(const QualifiedName& tagNa
me, Document& document, bool createdByParser) |
| 43 { | 43 { |
| 44 RefPtr<HTMLAudioElement> audioElement(adoptRef(new HTMLAudioElement(tagName,
document, createdByParser))); | 44 RefPtr<HTMLAudioElement> audioElement(adoptRef(new HTMLAudioElement(tagName,
document, createdByParser))); |
| 45 audioElement->suspendIfNeeded(); | 45 audioElement->suspendIfNeeded(); |
| 46 return audioElement.release(); | 46 return audioElement.release(); |
| 47 } | 47 } |
| 48 | 48 |
| 49 PassRefPtr<HTMLAudioElement> HTMLAudioElement::createForJSConstructor(Document*
document, const String& src) | 49 PassRefPtr<HTMLAudioElement> HTMLAudioElement::createForJSConstructor(Document&
document, const String& src) |
| 50 { | 50 { |
| 51 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(audioTag, doc
ument, false)); | 51 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(audioTag, doc
ument, false)); |
| 52 audio->setPreload("auto"); | 52 audio->setPreload("auto"); |
| 53 if (!src.isNull()) { | 53 if (!src.isNull()) { |
| 54 audio->setSrc(src); | 54 audio->setSrc(src); |
| 55 audio->scheduleDelayedAction(HTMLMediaElement::LoadMediaResource); | 55 audio->scheduleDelayedAction(HTMLMediaElement::LoadMediaResource); |
| 56 } | 56 } |
| 57 audio->suspendIfNeeded(); | 57 audio->suspendIfNeeded(); |
| 58 return audio.release(); | 58 return audio.release(); |
| 59 } | 59 } |
| 60 | 60 |
| 61 } | 61 } |
| OLD | NEW |