| Summary: | [PlayStation] Fix MIMETypeRegistry | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Ross Kirsling <ross.kirsling> | ||||||
| Component: | New Bugs | Assignee: | Ross Kirsling <ross.kirsling> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | aboxhall, apinheiro, cfleizach, commit-queue, dmazzoni, don.olmstead, ews-watchlist, jcraig, jdiggs, samuel_white, stephan.szabo, webkit-bug-importer | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | WebKit Nightly Build | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| See Also: | https://bugs.webkit.org/show_bug.cgi?id=206478 | ||||||||
| Attachments: |
|
||||||||
|
Description
Ross Kirsling
2020-01-29 13:16:27 PST
Created attachment 389176 [details]
Patch
Comment on attachment 389176 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=389176&action=review > Source/WebCore/platform/playstation/MIMETypeRegistryPlayStation.cpp:31 > +const std::initializer_list<TypeExtensionPair> platformMediaTypes = { It's probably better to do this as a function with a static like static std::initializer_list<TypeExtensionPair> &platformMediaTypes() { static std::initializer_list<TypeExtensionPair> list = { /* ... */ }; return list; } Created attachment 389183 [details]
Patch
Comment on attachment 389183 [details] Patch Clearing flags on attachment: 389183 Committed r255391: <https://trac.webkit.org/changeset/255391> All reviewed patches have been landed. Closing bug. |