Title: [258441] trunk/Source/WebKit
Revision
258441
Author
bfulg...@apple.com
Date
2020-03-13 16:04:17 -0700 (Fri, 13 Mar 2020)

Log Message

Remove Unused IPC message PlaybackSessionManagerProxy::PictureInPictureActiveChanged
https://bugs.webkit.org/show_bug.cgi?id=209085
<rdar://problem/59658916>

Reviewed by Geoffrey Garen.

Remove the unused PlaybackSessionManagerProxy message 'PictureInPictureActiveChanged'.

* UIProcess/Cocoa/PlaybackSessionManagerProxy.h:
* UIProcess/Cocoa/PlaybackSessionManagerProxy.messages.in:
* UIProcess/Cocoa/PlaybackSessionManagerProxy.mm:
(WebKit::PlaybackSessionManagerProxy::pictureInPictureActiveChanged): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (258440 => 258441)


--- trunk/Source/WebKit/ChangeLog	2020-03-13 22:35:09 UTC (rev 258440)
+++ trunk/Source/WebKit/ChangeLog	2020-03-13 23:04:17 UTC (rev 258441)
@@ -1,3 +1,18 @@
+2020-03-13  Brent Fulgham  <bfulg...@apple.com>
+
+        Remove Unused IPC message PlaybackSessionManagerProxy::PictureInPictureActiveChanged
+        https://bugs.webkit.org/show_bug.cgi?id=209085
+        <rdar://problem/59658916>
+
+        Reviewed by Geoffrey Garen.
+
+        Remove the unused PlaybackSessionManagerProxy message 'PictureInPictureActiveChanged'.
+
+        * UIProcess/Cocoa/PlaybackSessionManagerProxy.h:
+        * UIProcess/Cocoa/PlaybackSessionManagerProxy.messages.in:
+        * UIProcess/Cocoa/PlaybackSessionManagerProxy.mm:
+        (WebKit::PlaybackSessionManagerProxy::pictureInPictureActiveChanged): Deleted.
+
 2020-03-13  Kate Cheney  <katherine_che...@apple.com>
 
         [ iOS and Mac wk2 ] http/tests/in-app-browser-privacy/ tests failing

Modified: trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.h (258440 => 258441)


--- trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.h	2020-03-13 22:35:09 UTC (rev 258440)
+++ trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.h	2020-03-13 23:04:17 UTC (rev 258441)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016-2017 Apple Inc. All rights reserved.
+ * Copyright (C) 2016-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -216,7 +216,6 @@
     void mutedChanged(uint64_t contextId, bool muted);
     void volumeChanged(uint64_t contextId, double volume);
     void pictureInPictureSupportedChanged(uint64_t contextId, bool pictureInPictureSupported);
-    void pictureInPictureActiveChanged(uint64_t contextId, bool pictureInPictureActive);
 
     // Messages to PlaybackSessionManager
     void play(uint64_t contextId);

Modified: trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.messages.in (258440 => 258441)


--- trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.messages.in	2020-03-13 22:35:09 UTC (rev 258440)
+++ trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.messages.in	2020-03-13 23:04:17 UTC (rev 258441)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2017 Apple Inc. All rights reserved.
+# Copyright (C) 2016-2020 Apple Inc. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions
@@ -38,7 +38,6 @@
     MutedChanged(uint64_t contextId, bool muted);
     VolumeChanged(uint64_t contextId, double volume);
     PictureInPictureSupportedChanged(uint64_t contextID, bool pictureInPictureSupported)
-    PictureInPictureActiveChanged(uint64_t contextId, bool pictureInPictureActive)
     SetUpPlaybackControlsManagerWithID(uint64_t contextId)
     ClearPlaybackControlsManager()
 

Modified: trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.mm (258440 => 258441)


--- trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.mm	2020-03-13 22:35:09 UTC (rev 258440)
+++ trunk/Source/WebKit/UIProcess/Cocoa/PlaybackSessionManagerProxy.mm	2020-03-13 23:04:17 UTC (rev 258441)
@@ -499,12 +499,6 @@
     ensureModel(contextId).pictureInPictureSupportedChanged(supported);
 }
 
-void PlaybackSessionManagerProxy::pictureInPictureActiveChanged(uint64_t contextId, bool active)
-{
-    MESSAGE_CHECK_CONTEXTID(contextId);
-    ensureModel(contextId).pictureInPictureActiveChanged(active);
-}
-
 void PlaybackSessionManagerProxy::handleControlledElementIDResponse(uint64_t contextId, String identifier) const
 {
     MESSAGE_CHECK_CONTEXTID(contextId);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to