Title: [173160] trunk/Source/WebCore
Revision
173160
Author
[email protected]
Date
2014-09-01 12:15:23 -0700 (Mon, 01 Sep 2014)

Log Message

Remove an unnecessary local in GraphicsLayerCA::ensureStructuralLayer
https://bugs.webkit.org/show_bug.cgi?id=136426

Reviewed by Dan Bernstein.

* platform/graphics/ca/GraphicsLayerCA.cpp:
(WebCore::GraphicsLayerCA::ensureStructuralLayer):
This was here so that we could call PlatformCALayerClient::platformLayerChanged,
but that no longer exists!

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (173159 => 173160)


--- trunk/Source/WebCore/ChangeLog	2014-09-01 18:10:32 UTC (rev 173159)
+++ trunk/Source/WebCore/ChangeLog	2014-09-01 19:15:23 UTC (rev 173160)
@@ -1,3 +1,15 @@
+2014-09-01  Tim Horton  <[email protected]>
+
+        Remove an unnecessary local in GraphicsLayerCA::ensureStructuralLayer
+        https://bugs.webkit.org/show_bug.cgi?id=136426
+
+        Reviewed by Dan Bernstein.
+
+        * platform/graphics/ca/GraphicsLayerCA.cpp:
+        (WebCore::GraphicsLayerCA::ensureStructuralLayer):
+        This was here so that we could call PlatformCALayerClient::platformLayerChanged,
+        but that no longer exists!
+
 2014-08-29  Sergio Villar Senin  <[email protected]>
 
         [CSS Grid Layout] Resolved value of grid-template-* must include every track listed

Modified: trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp (173159 => 173160)


--- trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp	2014-09-01 18:10:32 UTC (rev 173159)
+++ trunk/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.cpp	2014-09-01 19:15:23 UTC (rev 173160)
@@ -1712,10 +1712,6 @@
         return;
     }
 
-#if PLATFORM(IOS)
-    RefPtr<PlatformCALayer> oldPrimaryLayer = m_structuralLayer ? m_structuralLayer.get() : m_layer.get();
-#endif
-
     bool structuralLayerChanged = false;
     
     if (purpose == StructuralLayerForPreserves3D) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to