Title: [123633] trunk/Source/WebCore
Revision
123633
Author
shawnsi...@chromium.org
Date
2012-07-25 10:43:51 -0700 (Wed, 25 Jul 2012)

Log Message

[chromium] Build fix for clang builds after r123628
https://bugs.webkit.org/show_bug.cgi?id=92266

Reviewed by Adrienne Walker.

An un-used variable was causing build failures for clang builds
after the refactoring in r123628.  It is correct to simply remove
this value.

* platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp:
(WebCore::calculateDrawTransformsInternal):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (123632 => 123633)


--- trunk/Source/WebCore/ChangeLog	2012-07-25 17:41:03 UTC (rev 123632)
+++ trunk/Source/WebCore/ChangeLog	2012-07-25 17:43:51 UTC (rev 123633)
@@ -1,3 +1,17 @@
+2012-07-25  Shawn Singh  <shawnsi...@chromium.org>
+
+        [chromium] Build fix for clang builds after r123628
+        https://bugs.webkit.org/show_bug.cgi?id=92266
+
+        Reviewed by Adrienne Walker.
+
+        An un-used variable was causing build failures for clang builds
+        after the refactoring in r123628.  It is correct to simply remove
+        this value.
+
+        * platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp:
+        (WebCore::calculateDrawTransformsInternal):
+
 2012-07-25  Hans Wennborg  <h...@chromium.org>
 
         Speech _javascript_ API: extract function from SpeechRecognitionResult::emma()

Modified: trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp (123632 => 123633)


--- trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp	2012-07-25 17:41:03 UTC (rev 123632)
+++ trunk/Source/WebCore/platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp	2012-07-25 17:43:51 UTC (rev 123633)
@@ -730,7 +730,6 @@
     if (layer->renderSurface() && layer != rootLayer) {
         RenderSurfaceType* renderSurface = layer->renderSurface();
         IntRect clippedContentRect = localDrawableContentRectOfSubtree;
-        FloatPoint surfaceCenter = FloatRect(clippedContentRect).center();
 
         // The render surface clipRect is expressed in the space where this surface draws, i.e. the same space as clipRectFromAncestor.
         if (ancestorClipsSubtree)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to