Title: [101884] branches/safari-534.53-branch/Source/WebCore

Diff

Modified: branches/safari-534.53-branch/Source/WebCore/ChangeLog (101883 => 101884)


--- branches/safari-534.53-branch/Source/WebCore/ChangeLog	2011-12-03 01:38:26 UTC (rev 101883)
+++ branches/safari-534.53-branch/Source/WebCore/ChangeLog	2011-12-03 01:42:06 UTC (rev 101884)
@@ -1,5 +1,16 @@
 2011-12-02  Lucas Forschler  <[email protected]>
 
+    Merge 90959
+
+    2011-07-13  Simon Fraser  <[email protected]>
+
+            Fix non-debug builds.
+
+            * rendering/RenderLayerBacking.cpp:
+            (WebCore::RenderLayerBacking::createGraphicsLayer):
+
+2011-12-02  Lucas Forschler  <[email protected]>
+
     Merge 93445
 
     2011-08-19  Beth Dakin  <[email protected]>

Modified: branches/safari-534.53-branch/Source/WebCore/rendering/RenderLayerBacking.cpp (101883 => 101884)


--- branches/safari-534.53-branch/Source/WebCore/rendering/RenderLayerBacking.cpp	2011-12-03 01:38:26 UTC (rev 101883)
+++ branches/safari-534.53-branch/Source/WebCore/rendering/RenderLayerBacking.cpp	2011-12-03 01:42:06 UTC (rev 101884)
@@ -102,6 +102,8 @@
     OwnPtr<GraphicsLayer> graphicsLayer = GraphicsLayer::create(this);
 #ifndef NDEBUG
     graphicsLayer->setName(name);
+#else
+    UNUSED_PARAM(name);
 #endif
     graphicsLayer->setMaintainsPixelAlignment(compositor()->keepLayersPixelAligned());
     return graphicsLayer.release();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to