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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp

Issue 1418693003: Correct function names in logs in HTMLMediaElement.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
index 614c6ce029563ab390b6395af1f1e283eed2f81d..741c45db38a3c89333106cbb09ab1f2c98b909e8 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
@@ -2742,7 +2742,7 @@ void HTMLMediaElement::sourceWasRemoved(HTMLSourceElement* source)
void HTMLMediaElement::timeChanged()
{
- WTF_LOG(Media, "HTMLMediaElement::mediaPlayerTimeChanged(%p)", this);
+ WTF_LOG(Media, "HTMLMediaElement::timeChanged(%p)", this);
cueTimeline().updateActiveCues(currentTime());
@@ -2827,7 +2827,7 @@ void HTMLMediaElement::durationChanged(double duration, bool requestSeek)
void HTMLMediaElement::playbackStateChanged()
{
- WTF_LOG(Media, "HTMLMediaElement::mediaPlayerPlaybackStateChanged(%p)", this);
+ WTF_LOG(Media, "HTMLMediaElement::playbackStateChanged(%p)", this);
if (!webMediaPlayer())
return;
@@ -2882,7 +2882,7 @@ void HTMLMediaElement::repaint()
void HTMLMediaElement::sizeChanged()
{
- WTF_LOG(Media, "HTMLMediaElement::mediaPlayerSizeChanged(%p)", this);
+ WTF_LOG(Media, "HTMLMediaElement::sizeChanged(%p)", this);
ASSERT(hasVideo()); // "resize" makes no sense absent video.
if (m_readyState > HAVE_NOTHING && isHTMLVideoElement())
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698