| Index: Source/WebCore/html/HTMLSourceElement.cpp
|
| diff --git a/Source/WebCore/html/HTMLSourceElement.cpp b/Source/WebCore/html/HTMLSourceElement.cpp
|
| index 410c797076d3b734b814ec1f2614ae1d494be58a..18baa4d12615b4830d659c264bf5950b67e1556d 100644
|
| --- a/Source/WebCore/html/HTMLSourceElement.cpp
|
| +++ b/Source/WebCore/html/HTMLSourceElement.cpp
|
| @@ -44,7 +44,7 @@ inline HTMLSourceElement::HTMLSourceElement(const QualifiedName& tagName, Docume
|
| : HTMLElement(tagName, document)
|
| , m_errorEventTimer(this, &HTMLSourceElement::errorEventTimerFired)
|
| {
|
| - LOG(Media, "HTMLSourceElement::HTMLSourceElement - %p", this);
|
| + LOG_INFO(Media, "HTMLSourceElement::HTMLSourceElement - %p", this);
|
| ASSERT(hasTagName(sourceTag));
|
| }
|
|
|
| @@ -99,7 +99,7 @@ void HTMLSourceElement::setType(const String& type)
|
|
|
| void HTMLSourceElement::scheduleErrorEvent()
|
| {
|
| - LOG(Media, "HTMLSourceElement::scheduleErrorEvent - %p", this);
|
| + LOG_INFO(Media, "HTMLSourceElement::scheduleErrorEvent - %p", this);
|
| if (m_errorEventTimer.isActive())
|
| return;
|
|
|
| @@ -108,13 +108,13 @@ void HTMLSourceElement::scheduleErrorEvent()
|
|
|
| void HTMLSourceElement::cancelPendingErrorEvent()
|
| {
|
| - LOG(Media, "HTMLSourceElement::cancelPendingErrorEvent - %p", this);
|
| + LOG_INFO(Media, "HTMLSourceElement::cancelPendingErrorEvent - %p", this);
|
| m_errorEventTimer.stop();
|
| }
|
|
|
| void HTMLSourceElement::errorEventTimerFired(Timer<HTMLSourceElement>*)
|
| {
|
| - LOG(Media, "HTMLSourceElement::errorEventTimerFired - %p", this);
|
| + LOG_INFO(Media, "HTMLSourceElement::errorEventTimerFired - %p", this);
|
| dispatchEvent(Event::create(eventNames().errorEvent, false, true));
|
| }
|
|
|
|
|