Title: [236462] trunk/Source/WebCore
Revision
236462
Author
calva...@igalia.com
Date
2018-09-25 10:19:36 -0700 (Tue, 25 Sep 2018)

Log Message

[EME] Fix variable name that should have gone in r236317
https://bugs.webkit.org/show_bug.cgi?id=189944

Reviewed by Jer Noble.

m_cdmInstanceClientWeakPtrFactory becomes
m_cdmInstanceSessionClientWeakPtrFactory as its type changes to
CDMInstanceSessionClient.

* Modules/encryptedmedia/MediaKeySession.cpp:
(WebCore::MediaKeySession::MediaKeySession):
* Modules/encryptedmedia/MediaKeySession.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (236461 => 236462)


--- trunk/Source/WebCore/ChangeLog	2018-09-25 16:57:32 UTC (rev 236461)
+++ trunk/Source/WebCore/ChangeLog	2018-09-25 17:19:36 UTC (rev 236462)
@@ -1,3 +1,18 @@
+2018-09-25  Xabier Rodriguez Calvar  <calva...@igalia.com>
+
+        [EME] Fix variable name that should have gone in r236317
+        https://bugs.webkit.org/show_bug.cgi?id=189944
+
+        Reviewed by Jer Noble.
+
+        m_cdmInstanceClientWeakPtrFactory becomes
+        m_cdmInstanceSessionClientWeakPtrFactory as its type changes to
+        CDMInstanceSessionClient.
+
+        * Modules/encryptedmedia/MediaKeySession.cpp:
+        (WebCore::MediaKeySession::MediaKeySession):
+        * Modules/encryptedmedia/MediaKeySession.h:
+
 2018-09-25  Simon Fraser  <simon.fra...@apple.com>
 
         Clean up code around RenderLayer's "has accelerated scrolling" functions

Modified: trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.cpp (236461 => 236462)


--- trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.cpp	2018-09-25 16:57:32 UTC (rev 236461)
+++ trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.cpp	2018-09-25 17:19:36 UTC (rev 236462)
@@ -88,7 +88,7 @@
     UNUSED_PARAM(m_closed);
     UNUSED_PARAM(m_uninitialized);
 
-    m_instanceSession->setClient(m_cdmInstanceClientWeakPtrFactory.createWeakPtr(*this));
+    m_instanceSession->setClient(m_cdmInstanceSessionClientWeakPtrFactory.createWeakPtr(*this));
 }
 
 MediaKeySession::~MediaKeySession()

Modified: trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.h (236461 => 236462)


--- trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.h	2018-09-25 16:57:32 UTC (rev 236461)
+++ trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.h	2018-09-25 17:19:36 UTC (rev 236462)
@@ -117,7 +117,7 @@
     double m_firstDecryptTime { 0 };
     double m_latestDecryptTime { 0 };
     Vector<std::pair<Ref<SharedBuffer>, MediaKeyStatus>> m_statuses;
-    WeakPtrFactory<CDMInstanceSessionClient> m_cdmInstanceClientWeakPtrFactory;
+    WeakPtrFactory<CDMInstanceSessionClient> m_cdmInstanceSessionClientWeakPtrFactory;
 };
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to