WebKit Bugzilla
Attachment 370066 Details for
Bug 197964
: Enable legacy EME for iOS WKWebView
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197964-20190516141059.patch (text/plain), 2.76 KB, created by
Alex Christensen
on 2019-05-16 14:11:00 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Alex Christensen
Created:
2019-05-16 14:11:00 PDT
Size:
2.76 KB
patch
obsolete
>Index: Source/WebCore/ChangeLog >=================================================================== >--- Source/WebCore/ChangeLog (revision 245300) >+++ Source/WebCore/ChangeLog (working copy) >@@ -1,3 +1,16 @@ >+2019-05-16 Alex Christensen <achristensen@webkit.org> >+ >+ Enable legacy EME for iOS WKWebView >+ https://bugs.webkit.org/show_bug.cgi?id=197964 >+ <rdar://problem/34887387> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ This was attempted unsuccessfully in r230169. >+ Verified manually that it works as desired. >+ >+ * page/RuntimeEnabledFeatures.h: >+ > 2019-05-14 Zalan Bujtas <zalan@apple.com> > > Do not try to issue repaint while the render tree is being destroyed. >Index: Source/WebCore/page/RuntimeEnabledFeatures.h >=================================================================== >--- Source/WebCore/page/RuntimeEnabledFeatures.h (revision 245300) >+++ Source/WebCore/page/RuntimeEnabledFeatures.h (working copy) >@@ -507,7 +507,7 @@ private: > #endif > > #if ENABLE(LEGACY_ENCRYPTED_MEDIA) >- bool m_legacyEncryptedMediaAPIEnabled { false }; >+ bool m_legacyEncryptedMediaAPIEnabled { true }; > #endif > > #if ENABLE(INTERSECTION_OBSERVER) >Index: Source/WebKit/ChangeLog >=================================================================== >--- Source/WebKit/ChangeLog (revision 245406) >+++ Source/WebKit/ChangeLog (working copy) >@@ -1,3 +1,14 @@ >+2019-05-16 Alex Christensen <achristensen@webkit.org> >+ >+ Enable legacy EME for iOS WKWebView >+ https://bugs.webkit.org/show_bug.cgi?id=197964 >+ <rdar://problem/34887387> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * UIProcess/API/Cocoa/WKWebViewConfiguration.mm: >+ (-[WKWebViewConfiguration init]): >+ > 2019-05-16 Alex Christensen <achristensen@webkit.org> > > Add SPI to set a list of hosts to which to send custom header fields cross-origin >Index: Source/WebKit/UIProcess/API/Cocoa/WKWebViewConfiguration.mm >=================================================================== >--- Source/WebKit/UIProcess/API/Cocoa/WKWebViewConfiguration.mm (revision 245300) >+++ Source/WebKit/UIProcess/API/Cocoa/WKWebViewConfiguration.mm (working copy) >@@ -200,13 +200,12 @@ - (instancetype)init > #endif > _mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeAll; > _ignoresViewportScaleLimits = NO; >- _legacyEncryptedMediaAPIEnabled = NO; > #else > _mediaTypesRequiringUserActionForPlayback = WKAudiovisualMediaTypeNone; > _mediaDataLoadsAutomatically = YES; > _userInterfaceDirectionPolicy = WKUserInterfaceDirectionPolicyContent; >- _legacyEncryptedMediaAPIEnabled = YES; > #endif >+ _legacyEncryptedMediaAPIEnabled = YES; > _mainContentUserGestureOverrideEnabled = NO; > _invisibleAutoplayNotPermitted = NO; > _attachmentElementEnabled = NO;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 197964
:
370066
|
370067
|
370145