Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: Source/core/html/HTMLAudioElement.cpp

Issue 142413014: Use isFinishedParsingChildren() in HTMLMediaElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLAudioElement.h ('k') | Source/core/html/HTMLMediaElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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(Document& document, bool createdByParser) 35 HTMLAudioElement::HTMLAudioElement(Document& document)
36 : HTMLMediaElement(audioTag, document, createdByParser) 36 : HTMLMediaElement(audioTag, document)
37 { 37 {
38 ScriptWrappable::init(this); 38 ScriptWrappable::init(this);
39 } 39 }
40 40
41 PassRefPtr<HTMLAudioElement> HTMLAudioElement::create(Document& document, bool c reatedByParser) 41 PassRefPtr<HTMLAudioElement> HTMLAudioElement::create(Document& document)
42 { 42 {
43 RefPtr<HTMLAudioElement> audioElement(adoptRef(new HTMLAudioElement(document , createdByParser))); 43 RefPtr<HTMLAudioElement> audioElement(adoptRef(new HTMLAudioElement(document )));
44 audioElement->suspendIfNeeded(); 44 audioElement->suspendIfNeeded();
45 return audioElement.release(); 45 return audioElement.release();
46 } 46 }
47 47
48 PassRefPtr<HTMLAudioElement> HTMLAudioElement::createForJSConstructor(Document& document, const AtomicString& src) 48 PassRefPtr<HTMLAudioElement> HTMLAudioElement::createForJSConstructor(Document& document, const AtomicString& src)
49 { 49 {
50 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(document, fal se)); 50 RefPtr<HTMLAudioElement> audio = adoptRef(new HTMLAudioElement(document));
51 audio->setPreload(AtomicString("auto", AtomicString::ConstructFromLiteral)); 51 audio->setPreload(AtomicString("auto", AtomicString::ConstructFromLiteral));
52 if (!src.isNull()) 52 if (!src.isNull())
53 audio->setSrc(src); 53 audio->setSrc(src);
54 audio->suspendIfNeeded(); 54 audio->suspendIfNeeded();
55 return audio.release(); 55 return audio.release();
56 } 56 }
57 57
58 } 58 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLAudioElement.h ('k') | Source/core/html/HTMLMediaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698