Title: [204086] branches/safari-602-branch/Source/WebCore
Revision
204086
Author
[email protected]
Date
2016-08-03 10:22:36 -0700 (Wed, 03 Aug 2016)

Log Message

Merge r204082. rdar://problem/27547583

Modified Paths

Diff

Modified: branches/safari-602-branch/Source/WebCore/ChangeLog (204085 => 204086)


--- branches/safari-602-branch/Source/WebCore/ChangeLog	2016-08-03 17:15:12 UTC (rev 204085)
+++ branches/safari-602-branch/Source/WebCore/ChangeLog	2016-08-03 17:22:36 UTC (rev 204086)
@@ -1,3 +1,18 @@
+2016-08-03  Babak Shafiei  <[email protected]>
+
+        Merge r204082. rdar://problem/27547583
+
+    2016-08-03  Eric Carlson  <[email protected]>
+
+            [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  Babak Shafiei  <[email protected]>
 
         Merge r204050. rdar://problem/27313234

Modified: branches/safari-602-branch/Source/WebCore/platform/ios/RemoteCommandListenerIOS.mm (204085 => 204086)


--- branches/safari-602-branch/Source/WebCore/platform/ios/RemoteCommandListenerIOS.mm	2016-08-03 17:15:12 UTC (rev 204085)
+++ branches/safari-602-branch/Source/WebCore/platform/ios/RemoteCommandListenerIOS.mm	2016-08-03 17:22:36 UTC (rev 204086)
@@ -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
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to