Bug 130603

Summary: [iOS] Enable caption support in full screen.
Product: WebKit Reporter: Jer Noble <jer.noble>
Component: New BugsAssignee: Jer Noble <jer.noble>
Status: RESOLVED FIXED    
Severity: Normal CC: calvaris, commit-queue, eric.carlson, glenn, philipj, sergio
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch eric.carlson: review+

Jer Noble
Reported 2014-03-21 10:19:35 PDT
[iOS] Enable caption support in full screen.
Attachments
Patch (6.46 KB, patch)
2014-03-21 10:21 PDT, Jer Noble
no flags
Patch (7.84 KB, patch)
2014-03-25 11:37 PDT, Jer Noble
eric.carlson: review+
Jer Noble
Comment 1 2014-03-21 10:21:47 PDT
Jer Noble
Comment 2 2014-03-25 11:37:04 PDT
Eric Carlson
Comment 3 2014-03-25 13:53:41 PDT
Comment on attachment 227775 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=227775&action=review > Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:33 > +#include <wtf/WeakPtr.h> Is this required? > Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:814 > + CGRect textFrame = m_videoLayer ? [m_videoLayer videoRect] : (CGRect)frame; Can't you use static_cast<CGRect>() ? > Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:1493 > + CGRect frame = CGRectMake(0, 0, m_videoFullscreenFrame.width(), m_videoFullscreenFrame.height()); Nit: this local isn't really necessary.
Jer Noble
Comment 4 2014-03-25 15:39:02 PDT
(In reply to comment #3) > (From update of attachment 227775 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=227775&action=review > > > Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:33 > > +#include <wtf/WeakPtr.h> > > Is this required? Nope. Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:814 > > + CGRect textFrame = m_videoLayer ? [m_videoLayer videoRect] : (CGRect)frame; > > Can't you use static_cast<CGRect>() ? Yep. Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:1493 > > + CGRect frame = CGRectMake(0, 0, m_videoFullscreenFrame.width(), m_videoFullscreenFrame.height()); > > Nit: this local isn't really necessary. Sure ain't.
Jer Noble
Comment 5 2014-03-25 16:43:41 PDT
Note You need to log in before you can comment on or make changes to this bug.