Title: [145918] trunk/Source/WebCore
Revision
145918
Author
[email protected]
Date
2013-03-15 11:03:42 -0700 (Fri, 15 Mar 2013)

Log Message

Unreviewed build fix. Rename local variable which was colliding with class method.

* platform/graphics/ca/win/PlatformCALayerWin.cpp:
(PlatformCALayer::clone):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (145917 => 145918)


--- trunk/Source/WebCore/ChangeLog	2013-03-15 18:00:03 UTC (rev 145917)
+++ trunk/Source/WebCore/ChangeLog	2013-03-15 18:03:42 UTC (rev 145918)
@@ -1,3 +1,10 @@
+2013-03-15  Jer Noble  <[email protected]>
+
+        Unreviewed build fix. Rename local variable which was colliding with class method.
+
+        * platform/graphics/ca/win/PlatformCALayerWin.cpp:
+        (PlatformCALayer::clone):
+
 2013-03-15  Joshua Bell  <[email protected]>
 
         IndexedDB: Handle success events arriving after context stopped

Modified: trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp (145917 => 145918)


--- trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2013-03-15 18:00:03 UTC (rev 145917)
+++ trunk/Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp	2013-03-15 18:03:42 UTC (rev 145918)
@@ -151,9 +151,9 @@
 
 PassRefPtr<PlatformCALayer> PlatformCALayer::clone(PlatformCALayerClient* owner) const
 {
-    PlatformCALayer::LayerType layerType = (layerType() == PlatformCALayer::LayerTypeTransformLayer) ?
+    PlatformCALayer::LayerType type = (layerType() == PlatformCALayer::LayerTypeTransformLayer) ?
         PlatformCALayer::LayerTypeTransformLayer : PlatformCALayer::LayerTypeLayer;
-    RefPtr<PlatformCALayer> newLayer = PlatformCALayer::create(layerType, owner);
+    RefPtr<PlatformCALayer> newLayer = PlatformCALayer::create(type, owner);
 
     newLayer->setPosition(position());
     newLayer->setBounds(bounds());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to