Index: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp |
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp |
index 8ebe870f7e594edad70562c6e535ca023388d06d..f2c5a649788e87679e0f45e296f1b786539c75f3 100644 |
--- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp |
+++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp |
@@ -313,8 +313,8 @@ bool MediaKeys::HasPendingActivity() const { |
// Remain around if there are pending events. |
DVLOG(MEDIA_KEYS_LOG_LEVEL) |
<< __func__ << "(" << this << ")" |
- << (!pending_actions_.IsEmpty() ? " !m_pendingActions.isEmpty()" : "") |
- << (reserved_for_media_element_ ? " m_reservedForMediaElement" : ""); |
+ << (!pending_actions_.IsEmpty() ? " !pending_actions_.isEmpty()" : "") |
+ << (reserved_for_media_element_ ? " reserved_for_media_element_" : ""); |
return !pending_actions_.IsEmpty() || reserved_for_media_element_; |
} |