Changeset 274423 in webkit


Ignore:
Timestamp:
Mar 15, 2021, 9:39:40 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

REGRESSION(r233845): EME Keysystem permission when MediaStream is disabled
https://bugs.webkit.org/show_bug.cgi?id=223185

Patch by Philippe Normand <pnormand@igalia.com> on 2021-03-15
Reviewed by Eric Carlson.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::requestMediaKeySystemPermissionForFrame): This method is required for
EME build configurations, not MediaStream...

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r274422 r274423  
     12021-03-15  Philippe Normand  <pnormand@igalia.com>
     2
     3        REGRESSION(r233845): EME Keysystem permission when MediaStream is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=223185
     5
     6        Reviewed by Eric Carlson.
     7
     8        * UIProcess/WebPageProxy.cpp:
     9        (WebKit::WebPageProxy::requestMediaKeySystemPermissionForFrame): This method is required for
     10        EME build configurations, not MediaStream...
     11
    1122021-03-15  Peng Liu  <peng.liu6@apple.com>
    213
  • trunk/Source/WebKit/UIProcess/WebPageProxy.cpp

    r274374 r274423  
    82258225void WebPageProxy::requestMediaKeySystemPermissionForFrame(uint64_t mediaKeySystemID, FrameIdentifier frameID, const WebCore::SecurityOriginData& topLevelDocumentOriginData, const String& keySystem)
    82268226{
    8227 #if ENABLE(MEDIA_STREAM)
     8227#if ENABLE(ENCRYPTED_MEDIA)
    82288228    MESSAGE_CHECK(m_process, m_process->webFrame(frameID));
    82298229
Note: See TracChangeset for help on using the changeset viewer.