WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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
Details
Formatted Diff
Diff
Patch for landing
(8.44 KB, patch)
2017-06-12 15:45 PDT
,
Jer Noble
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Jer Noble
Comment 1
2017-06-12 15:25:14 PDT
<
rdar://problem/32518760
>
Radar WebKit Bug Importer
Comment 2
2017-06-12 15:25:39 PDT
<
rdar://problem/32723876
>
Jer Noble
Comment 3
2017-06-12 15:27:30 PDT
Created
attachment 312710
[details]
Patch
Jon Lee
Comment 4
2017-06-12 15:31:08 PDT
<
rdar://problem/32518760
>
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.
Top of Page
Format For Printing
XML
Clone This Bug