Title: [204082] trunk/Source/WebCore
Revision
204082
Author
eric.carl...@apple.com
Date
2016-08-03 09:33:40 -0700 (Wed, 03 Aug 2016)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (204081 => 204082)


--- trunk/Source/WebCore/ChangeLog	2016-08-03 16:12:17 UTC (rev 204081)
+++ trunk/Source/WebCore/ChangeLog	2016-08-03 16:33:40 UTC (rev 204082)
@@ -1,3 +1,14 @@
+2016-08-03  Eric Carlson  <eric.carl...@apple.com>
+
+        [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.
+
 2016-08-02  Frederic Wang  <fw...@igalia.com>
 
         Move determination of operator direction into DOM class and reduce relayout

Modified: trunk/Source/WebCore/platform/ios/RemoteCommandListenerIOS.mm (204081 => 204082)


--- trunk/Source/WebCore/platform/ios/RemoteCommandListenerIOS.mm	2016-08-03 16:12:17 UTC (rev 204081)
+++ trunk/Source/WebCore/platform/ios/RemoteCommandListenerIOS.mm	2016-08-03 16:33:40 UTC (rev 204082)
@@ -127,7 +127,7 @@
         callOnMainThread([weakThis, argument] {
             if (!weakThis)
                 return;
-            weakThis->m_client.didReceiveRemoteControlCommand(PlatformMediaSession::TogglePlayPauseCommand, &argument);
+            weakThis->m_client.didReceiveRemoteControlCommand(PlatformMediaSession::SeekToPlaybackPositionCommand, &argument);
         });
 
         return MPRemoteCommandHandlerStatusSuccess;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to