| Summary: | Return extracted key ids as an optional | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Charlie Turner <cturner> | ||||||||||||||||
| Component: | Media | Assignee: | Charlie Turner <cturner> | ||||||||||||||||
| Status: | RESOLVED FIXED | ||||||||||||||||||
| Severity: | Normal | CC: | commit-queue, darin, jer.noble, webkit-bug-importer | ||||||||||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||||||||||
| Version: | WebKit Nightly Build | ||||||||||||||||||
| Hardware: | Unspecified | ||||||||||||||||||
| OS: | Unspecified | ||||||||||||||||||
| Attachments: |
|
||||||||||||||||||
|
Description
Charlie Turner
2018-08-03 05:17:00 PDT
Created attachment 346473 [details]
Patch
Created attachment 346475 [details]
Patch
Fix build error reported from iOS bot
Created attachment 346482 [details]
Patch
Fix more build errors reported from iOS bot
Created attachment 346486 [details]
Patch
Fix more iOS build errors, even though keyIDs() never returns a nullopt, I am still performing extra checking for the absence of a value in case FPS at some point starts handling init data types that do not guarantee key IDs
Created attachment 346488 [details]
Patch
It was not necessary to percolate the sentinel complication throughout the FairPlayStreaming module
Created attachment 346490 [details]
Patch
More iOS build errors
Comment on attachment 346490 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=346490&action=review > Source/WebCore/testing/MockCDMFactory.cpp:286 > + if (!keyIDs || (keyIDs && keyIDs.value().isEmpty())) { No need to use && here. if (!keyIDs || keyIDs.value().isEmpty()) { Created attachment 346624 [details]
Patch
Move the key ids rather than attempting a copy, which fails with the Vector of Refs, added logical cleanup suggested by Darin.
Comment on attachment 346624 [details] Patch Clearing flags on attachment: 346624 Committed r234603: <https://trac.webkit.org/changeset/234603> All reviewed patches have been landed. Closing bug. |