RESOLVED FIXED 173278
Screen sleeps while doing WebRTC video
https://bugs.webkit.org/show_bug.cgi?id=173278
Summary Screen sleeps while doing WebRTC video
Jer Noble
Reported 2017-06-12 15:20:45 PDT
Screen sleeps while doing WebRTC video
Attachments
Patch (8.46 KB, patch)
2017-06-12 15:27 PDT, Jer Noble
no flags
Patch for landing (8.44 KB, patch)
2017-06-12 15:45 PDT, Jer Noble
no flags
Jer Noble
Comment 1 2017-06-12 15:25:14 PDT
Radar WebKit Bug Importer
Comment 2 2017-06-12 15:25:39 PDT
Jer Noble
Comment 3 2017-06-12 15:27:30 PDT
Jon Lee
Comment 4 2017-06-12 15:31:08 PDT
Eric Carlson
Comment 5 2017-06-12 15:34:05 PDT
Comment on attachment 312710 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=312710&action=review > Source/WebCore/html/HTMLMediaElement.cpp:6362 > + if (m_mediaStreamSrcObject) { > + // Do not block system from sleeping if element is only rendering local (capture) sources. > + if (WTF::allOf(m_mediaStreamSrcObject->getTracks(), [] (RefPtr<MediaStreamTrack>& track) { > + return track && track->isCaptureTrack(); > + })) > + return SleepType::None; > + } Nit: This indentation is confusing, even though it is technically correct. It would be much easier to understand if the allOf was on a single line: if (WTF::allOf(m_mediaStreamSrcObject->getTracks(), [] (RefPtr<MediaStreamTrack>& track) { return track && track->isCaptureTrack(); })) return SleepType::None;
Jer Noble
Comment 6 2017-06-12 15:45:54 PDT
Created attachment 312712 [details] Patch for landing
WebKit Commit Bot
Comment 7 2017-06-12 16:01:59 PDT
Comment on attachment 312712 [details] Patch for landing Clearing flags on attachment: 312712 Committed r218151: <http://trac.webkit.org/changeset/218151>
WebKit Commit Bot
Comment 8 2017-06-12 16:02:01 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.