WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
146028
MediaSession: handle MediaEventTrackNext and MediaEventTrackPrevious events
https://bugs.webkit.org/show_bug.cgi?id=146028
Summary
MediaSession: handle MediaEventTrackNext and MediaEventTrackPrevious events
Matt Rajca
Reported
2015-06-16 14:49:45 PDT
In addition to play/pause events, we need to handle the media control events for skipping to the next / previous track.
Attachments
Patch
(7.02 KB, patch)
2015-06-16 15:26 PDT
,
Matt Rajca
darin
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2015-06-16 14:53:18 PDT
<
rdar://problem/21410202
>
Matt Rajca
Comment 2
2015-06-16 15:26:01 PDT
Created
attachment 254970
[details]
Patch
Darin Adler
Comment 3
2015-06-17 15:22:25 PDT
Comment on
attachment 254970
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=254970&action=review
> Source/WebCore/Modules/mediasession/MediaSessionManager.cpp:67 > + if (session->currentState() == MediaSession::State::Active && session->kind() == "content")
Generally it’s not good for an enum value to be a string literal at each call site like this. It’s easy to have a typo and the compiler won’t catch it. I suggest making constants for these special kind values somewhere, so that we get a compile time error if we spell it wrong somewhere.
Matt Rajca
Comment 4
2015-06-17 15:46:50 PDT
(In reply to
comment #3
)
> Comment on
attachment 254970
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=254970&action=review
> > > Source/WebCore/Modules/mediasession/MediaSessionManager.cpp:67 > > + if (session->currentState() == MediaSession::State::Active && session->kind() == "content") > > Generally it’s not good for an enum value to be a string literal at each > call site like this. It’s easy to have a typo and the compiler won’t catch > it. I suggest making constants for these special kind values somewhere, so > that we get a compile time error if we spell it wrong somewhere.
Fixed. I didn't see us using many string constants in WebCore.
Matt Rajca
Comment 5
2015-06-17 17:03:24 PDT
Committed
r185678
: <
http://trac.webkit.org/changeset/185678
>
Eric Carlson
Comment 6
2015-06-18 09:47:06 PDT
(In reply to
comment #4
)
> (In reply to
comment #3
) > > Comment on
attachment 254970
[details]
> > Patch > > > > View in context: > >
https://bugs.webkit.org/attachment.cgi?id=254970&action=review
> > > > > Source/WebCore/Modules/mediasession/MediaSessionManager.cpp:67 > > > + if (session->currentState() == MediaSession::State::Active && session->kind() == "content") > > > > Generally it’s not good for an enum value to be a string literal at each > > call site like this. It’s easy to have a typo and the compiler won’t catch > > it. I suggest making constants for these special kind values somewhere, so > > that we get a compile time error if we spell it wrong somewhere. > > Fixed. I didn't see us using many string constants in WebCore.
Look at the newer enums exposed to JavaScript, for example TextTrackMode and TextTrackKind in TextTrack.idl/.cpp/.h
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug