Changeset 281013 in webkit
- Timestamp:
- Aug 13, 2021 4:57:19 AM (11 months ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Modules/mediasession/MediaSession.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r281012 r281013 1 2021-08-13 Jean-Yves Avenard <jya@apple.com> 2 3 nexttrack and previoustrack MediaSession handlers not working 4 https://bugs.webkit.org/show_bug.cgi?id=229068 5 rdar://80100092 6 7 Reviewed by Youenn Fablet. 8 9 Map between MediaSession action next/previousTrack and RemoteControlCommandType ones 10 were inverted. 11 There is no infrastrure in place to ensure that the right MRMediaRemoteCommand is 12 used with the MediaRemote backend, which prevents automating the test. 13 14 * Modules/mediasession/MediaSession.cpp: 15 (WebCore::platformCommandForMediaSessionAction): 16 1 17 2021-08-13 Youenn Fablet <youenn@apple.com> 2 18 -
trunk/Source/WebCore/Modules/mediasession/MediaSession.cpp
r278448 r281013 65 65 { MediaSessionAction::Seekforward, PlatformMediaSession::SkipForwardCommand }, 66 66 { MediaSessionAction::Seekbackward, PlatformMediaSession::SkipBackwardCommand }, 67 { MediaSessionAction::Previoustrack, PlatformMediaSession:: NextTrackCommand },68 { MediaSessionAction::Nexttrack, PlatformMediaSession:: PreviousTrackCommand },67 { MediaSessionAction::Previoustrack, PlatformMediaSession::PreviousTrackCommand }, 68 { MediaSessionAction::Nexttrack, PlatformMediaSession::NextTrackCommand }, 69 69 { MediaSessionAction::Stop, PlatformMediaSession::StopCommand }, 70 70 { MediaSessionAction::Seekto, PlatformMediaSession::SeekToPlaybackPositionCommand },
Note: See TracChangeset
for help on using the changeset viewer.