Changeset 204082 in webkit


Ignore:
Timestamp:
Aug 3, 2016 9:33:40 AM (8 years ago)
Author:
eric.carlson@apple.com
Message:

[Mac][iOS] Adopt MediaRemote "seek to playback position"
https://bugs.webkit.org/show_bug.cgi?id=160405
<rdar://problem/27547583>

Reviewed by Dean Jackson.

  • platform/ios/RemoteCommandListenerIOS.mm:

(WebCore::RemoteCommandListenerIOS::RemoteCommandListenerIOS): Fix a typo.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r204075 r204082  
     12016-08-03  Eric Carlson  <eric.carlson@apple.com>
     2
     3        [Mac][iOS] Adopt MediaRemote "seek to playback position"
     4        https://bugs.webkit.org/show_bug.cgi?id=160405
     5        <rdar://problem/27547583>
     6
     7        Reviewed by Dean Jackson.
     8
     9        * platform/ios/RemoteCommandListenerIOS.mm:
     10        (WebCore::RemoteCommandListenerIOS::RemoteCommandListenerIOS): Fix a typo.
     11
    1122016-08-02  Frederic Wang  <fwang@igalia.com>
    213
  • trunk/Source/WebCore/platform/ios/RemoteCommandListenerIOS.mm

    r203982 r204082  
    128128            if (!weakThis)
    129129                return;
    130             weakThis->m_client.didReceiveRemoteControlCommand(PlatformMediaSession::TogglePlayPauseCommand, &argument);
     130            weakThis->m_client.didReceiveRemoteControlCommand(PlatformMediaSession::SeekToPlaybackPositionCommand, &argument);
    131131        });
    132132
Note: See TracChangeset for help on using the changeset viewer.