Bug 146355

Summary: Add support for 'Default' media session types
Product: WebKit Reporter: Matt Rajca <mrajca>
Component: MediaAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: conrad_shultz, eric.carlson, jer.noble, mrajca, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 145411    
Attachments:
Description Flags
Patch darin: review+

Matt Rajca
Reported 2015-06-26 11:48:49 PDT
Media elements that do not specify a media session content kind should be assigned the top-level browsing context's media session.
Attachments
Patch (5.91 KB, patch)
2015-06-26 16:58 PDT, Matt Rajca
darin: review+
Radar WebKit Bug Importer
Comment 1 2015-06-26 11:49:39 PDT
Matt Rajca
Comment 2 2015-06-26 16:58:29 PDT
Darin Adler
Comment 3 2015-06-27 15:31:16 PDT
Comment on attachment 255676 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255676&action=review > Source/WebCore/Modules/mediasession/MediaSession.cpp:62 > + , m_kind(MediaSession::Kind::Default) Here in the MediaSession class, the name of this type is Kind, not MediaSession::Kind, so can leave off the MediaSession part. Seems that m_kind could default to this in the header, then we could omit it in this constructor. Syntax we would normally use in the class definition is: Kind m_kind { Kind::Default }; > Source/WebCore/Modules/mediasession/MediaSession.h:53 > + MediaSession(Document&); Probably should be: explicit MediaSession(Document&);
Matt Rajca
Comment 4 2015-06-28 22:21:45 PDT
(In reply to comment #3) > Comment on attachment 255676 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=255676&action=review > > > Source/WebCore/Modules/mediasession/MediaSession.cpp:62 > > + , m_kind(MediaSession::Kind::Default) > > Here in the MediaSession class, the name of this type is Kind, not > MediaSession::Kind, so can leave off the MediaSession part. > > Seems that m_kind could default to this in the header, then we could omit it > in this constructor. Syntax we would normally use in the class definition is: > > Kind m_kind { Kind::Default }; That's simpler. Changed. > > > Source/WebCore/Modules/mediasession/MediaSession.h:53 > > + MediaSession(Document&); > > Probably should be: > > explicit MediaSession(Document&); Yup, looks like we use `explicit` heavily throughout WebKit to avoid implicit conversions with single-argument constructors. Thanks!
Matt Rajca
Comment 5 2015-06-28 22:32:33 PDT
Note You need to log in before you can comment on or make changes to this bug.