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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp

Issue 2866093002: blink: m_foo -> foo_ in logging strings. (Closed)
Patch Set: rebase Created 3 years, 7 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
Index: third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
index 9f768b696e04da7bcb45cf3a41b50a21e06c4ca6..c9c7c9b29fae84d810414732fddaa573df6d3a78 100644
--- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
+++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeySession.cpp
@@ -1019,11 +1019,11 @@ bool MediaKeySession::HasPendingActivity() const {
// and we're not closed.
DVLOG(MEDIA_KEY_SESSION_LOG_LEVEL)
<< __func__ << "(" << this << ")"
- << (!pending_actions_.IsEmpty() ? " !m_pendingActions.isEmpty()" : "")
+ << (!pending_actions_.IsEmpty() ? " !pending_actions_.IsEmpty()" : "")
<< (async_event_queue_->HasPendingEvents()
- ? " m_asyncEventQueue->hasPendingEvents()"
+ ? " async_event_queue_->HasPendingEvents()"
: "")
- << ((media_keys_ && !is_closed_) ? " m_mediaKeys && !m_isClosed" : "");
+ << ((media_keys_ && !is_closed_) ? " media_keys_ && !is_closed_" : "");
return !pending_actions_.IsEmpty() ||
async_event_queue_->HasPendingEvents() || (media_keys_ && !is_closed_);

Powered by Google App Engine
This is Rietveld 408576698