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

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

Issue 2810213002: Correct typo in HTMLMediaElement log messages and make it less spammy (Closed)
Patch Set: Created 3 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 | « 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 ce63e6a2694f8ce1f27f2f51e93415b4ee6950a4..d707de7825bbde8897c969b77cb26add5a1e7dfc 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
@@ -2062,8 +2062,9 @@ double HTMLMediaElement::CurrentPlaybackPosition() const {
return GetWebMediaPlayer()->CurrentTime();
if (ready_state_ >= kHaveMetadata) {
- LOG(WARNING) << __func__ << " readyState = " << ready_state_
- << " but no webMeidaPlayer to provide currentPlaybackPosition";
+ BLINK_MEDIA_LOG
+ << __func__ << " readyState = " << ready_state_
+ << " but no webMediaPlayer to provide currentPlaybackPosition";
}
return 0;
« 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