| Summary: | [Win] Update MediaPlayerPrivateAVFoundationCF::supportsType | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Brent Fulgham <bfulgham> | ||||||
| Component: | Media | Assignee: | Brent Fulgham <bfulgham> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | bfulgham, commit-queue, eric.carlson, webkit-bug-importer | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | PC | ||||||||
| OS: | All | ||||||||
| Attachments: |
|
||||||||
|
Description
Brent Fulgham
2015-06-24 17:25:27 PDT
Created attachment 255534 [details]
Patch
Attachment 255534 [details] did not pass style-queue:
ERROR: Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:937: Place brace on its own line for function definitions. [whitespace/braces] [4]
ERROR: Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:983: Place brace on its own line for function definitions. [whitespace/braces] [4]
Total errors found: 2 in 3 files
If any of these errors are false positives, please file a bug against check-webkit-style.
I also fixed a null dereference I ran into while testing. Comment on attachment 255534 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255534&action=review > Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:910 > +static bool isUnsupportedMIMEType(const String& type) It looks like this and staticMIMETypeList are exactly the same as the ObjC versions. If so, can they be put into the base class and shared? > Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:1379 > + if (audibleOptionLocale) > + m_languageOfPrimaryAudioTrack = CFLocaleGetIdentifier(audibleOptionLocale.get()); > + else > + m_languageOfPrimaryAudioTrack = emptyString(); > + You forgot to document this in the ChangeLog. Created attachment 255562 [details]
Patch
Attachment 255562 [details] did not pass style-queue:
ERROR: Source/WebCore/platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:912: Place brace on its own line for function definitions. [whitespace/braces] [4]
ERROR: Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:1108: Place brace on its own line for function definitions. [whitespace/braces] [4]
Total errors found: 2 in 8 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Committed r185958: <http://trac.webkit.org/changeset/185958> |