⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 278316 in webkit


Ignore:
Timestamp:
Jun 1, 2021, 11:50:17 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

[EME][Thunder] Build broken since r278244
https://bugs.webkit.org/show_bug.cgi?id=226498

Patch by Philippe Normand <pnormand@igalia.com> on 2021-06-01
Reviewed by Alex Christensen.

  • platform/graphics/gstreamer/eme/CDMThunder.cpp:

(WebCore::CDMInstanceSessionThunder::cdmInstanceThunder const): Cast raw pointer instead of
its smart pointer container.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r278313 r278316  
     12021-06-01  Philippe Normand  <pnormand@igalia.com>
     2
     3        [EME][Thunder] Build broken since r278244
     4        https://bugs.webkit.org/show_bug.cgi?id=226498
     5
     6        Reviewed by Alex Christensen.
     7
     8        * platform/graphics/gstreamer/eme/CDMThunder.cpp:
     9        (WebCore::CDMInstanceSessionThunder::cdmInstanceThunder const): Cast raw pointer instead of
     10        its smart pointer container.
     11
    1122021-06-01  Antti Koivisto  <antti@apple.com>
    213
  • trunk/Source/WebCore/platform/graphics/gstreamer/eme/CDMThunder.cpp

    r278244 r278316  
    676676CDMInstanceThunder* CDMInstanceSessionThunder::cdmInstanceThunder() const
    677677{
    678     return static_cast<CDMInstanceThunder*>(cdmInstanceProxy());
     678    auto proxy = cdmInstanceProxy();
     679    return static_cast<CDMInstanceThunder*>(proxy.get());
    679680}
    680681
Note: See TracChangeset for help on using the changeset viewer.