Add remote media player proxy configuration for static player properties.
<rdar://problem/58139762>
Created attachment 386312 [details] Patch
Comment on attachment 386312 [details] Patch Clearing flags on attachment: 386312 Committed r253871: <https://trac.webkit.org/changeset/253871>
All reviewed patches have been landed. Closing bug.
Comment on attachment 386312 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=386312&action=review > Source/WebKit/WebProcess/GPU/media/RemoteMediaPlayerConfiguration.h:93 > + WTFMove(*engineDescription), > + WTFMove(*supportsScanning), > + WTFMove(*supportsPictureInPicture), > + WTFMove(*supportsAcceleratedRendering), > + WTFMove(*canPlayToWirelessPlaybackTarget), The WTFMove for engineDescription is fine. The others seem unnecessary. We don’t need to WTFMove a bool.
(In reply to Darin Adler from comment #5) > Comment on attachment 386312 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=386312&action=review > > > Source/WebKit/WebProcess/GPU/media/RemoteMediaPlayerConfiguration.h:93 > > + WTFMove(*engineDescription), > > + WTFMove(*supportsScanning), > > + WTFMove(*supportsPictureInPicture), > > + WTFMove(*supportsAcceleratedRendering), > > + WTFMove(*canPlayToWirelessPlaybackTarget), > > The WTFMove for engineDescription is fine. The others seem unnecessary. We > don’t need to WTFMove a bool. I will fix this in 205630.