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

Unified Diff: Source/WebCore/html/HTMLSourceElement.cpp

Issue 13643002: Rename LOG() to LOG_INFO() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/html/HTMLPlugInImageElement.cpp ('k') | Source/WebCore/html/HTMLTrackElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
}
« no previous file with comments | « Source/WebCore/html/HTMLPlugInImageElement.cpp ('k') | Source/WebCore/html/HTMLTrackElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698