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 ff536e8f8519f75d5f28303292f26148cf32ebf9..11f6c1892b857c04e921e3e2d6457f5c791c0509 100644 |
--- a/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp |
+++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaKeys.cpp |
@@ -254,11 +254,11 @@ bool MediaKeys::hasPendingActivity() const |
{ |
// Remain around if there are pending events. |
WTF_LOG(Media, "MediaKeys(%p)::hasPendingActivity %s%s%s", this, |
- ActiveDOMObject::hasPendingActivity() ? " ActiveDOMObject::hasPendingActivity()" : "", |
+ ScriptWrappable::hasPendingActivity() ? " ActiveDOMObject::hasPendingActivity()" : "", |
!m_pendingActions.isEmpty() ? " !m_pendingActions.isEmpty()" : "", |
m_reservedForMediaElement ? " m_reservedForMediaElement" : ""); |
- return ActiveDOMObject::hasPendingActivity() || !m_pendingActions.isEmpty() || m_reservedForMediaElement; |
+ return ScriptWrappable::hasPendingActivity() || !m_pendingActions.isEmpty() || m_reservedForMediaElement; |
} |
void MediaKeys::stop() |