| 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_);
|
|
|