Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Autoplay muted videos still stop playback of other streaming apps in …
…the background https://bugs.webkit.org/show_bug.cgi?id=177920 Reviewed by Eric Carlson. When creating a new <video> or <audio> element, the global AudioSession can sometimes have its sessionCategory() set to "MediaPlayback", even if the element does not yet have a source. This is because the constructor for the MediaElementSession is called before m_isPlayingToWirelessTarget is initialized, and so in the MediaElementSession constructor, the media element's m_isPlayingToWirelessTarget ivar is sometimes (uninitialized) true. We could move the MediaElementSession ivar to the very end of the header, so it's initialized last, but that still leaves the possibility of the MediaElementSession et. all calling into the HTMLMediaElement before it's subclass's constructors have a chance to initialize their own ivars (much less their vtables). So instead, we'll create and set the MediaElementSession in a finishInitialization() method called from the HTMLVideoElement and HTMLAudioElement's create() factory methods. * html/HTMLAudioElement.cpp: (WebCore::HTMLAudioElement::create): * html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::HTMLMediaElement): (WebCore::HTMLMediaElement::finishInitialization): * html/HTMLMediaElement.h: * html/HTMLVideoElement.cpp: (WebCore::HTMLVideoElement::create): Canonical link: https://commits.webkit.org/194956@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@223960 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
5 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters