Title: [194046] trunk/Source/WebKit2
Revision
194046
Author
[email protected]
Date
2015-12-14 11:55:46 -0800 (Mon, 14 Dec 2015)

Log Message

TiledCoreAnimationDrawingAreaProxy::createFenceForGeometryUpdate() sets fence port on context twice
https://bugs.webkit.org/show_bug.cgi?id=152239
<rdar://problem/22893289>

Reviewed by Darin Adler.

* UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.mm:
(WebKit::TiledCoreAnimationDrawingAreaProxy::createFenceForGeometryUpdate):
No need to setFencePort; createFencePort also installs it on the creating context.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (194045 => 194046)


--- trunk/Source/WebKit2/ChangeLog	2015-12-14 19:54:15 UTC (rev 194045)
+++ trunk/Source/WebKit2/ChangeLog	2015-12-14 19:55:46 UTC (rev 194046)
@@ -1,3 +1,15 @@
+2015-12-14  Tim Horton  <[email protected]>
+
+        TiledCoreAnimationDrawingAreaProxy::createFenceForGeometryUpdate() sets fence port on context twice
+        https://bugs.webkit.org/show_bug.cgi?id=152239
+        <rdar://problem/22893289>
+
+        Reviewed by Darin Adler.
+
+        * UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.mm:
+        (WebKit::TiledCoreAnimationDrawingAreaProxy::createFenceForGeometryUpdate):
+        No need to setFencePort; createFencePort also installs it on the creating context.
+
 2015-12-12  Alex Christensen  <[email protected]>
 
         Use existing code for redirects when using NETWORK_SESSION

Modified: trunk/Source/WebKit2/UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.mm (194045 => 194046)


--- trunk/Source/WebKit2/UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.mm	2015-12-14 19:54:15 UTC (rev 194045)
+++ trunk/Source/WebKit2/UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.mm	2015-12-14 19:55:46 UTC (rev 194046)
@@ -166,7 +166,6 @@
         return MachSendRight();
 
     MachSendRight fencePort = MachSendRight::adopt([rootLayerContext createFencePort]);
-    [rootLayerContext setFencePort:fencePort.sendRight()];
 
     // Invalidate the fence if a synchronous message arrives while it's installed,
     // because we won't be able to reply during the fence-wait.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to