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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.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/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_;
}

Powered by Google App Engine
This is Rietveld 408576698