Title: [125554] trunk/Source/WebCore
Revision
125554
Author
commit-qu...@webkit.org
Date
2012-08-14 06:16:34 -0700 (Tue, 14 Aug 2012)

Log Message

[BlackBerry] LayerCompositingThread.h doesn't compile
https://bugs.webkit.org/show_bug.cgi?id=93956

Patch by Arvid Nilsson <anils...@rim.com> on 2012-08-14
Reviewed by Rob Buis.

I forgot to upstream this local change.

* platform/graphics/blackberry/LayerCompositingThread.h:
(WebCore::LayerOverride::setBounds):
(WebCore::LayerOverride::setOpacity):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (125553 => 125554)


--- trunk/Source/WebCore/ChangeLog	2012-08-14 12:52:56 UTC (rev 125553)
+++ trunk/Source/WebCore/ChangeLog	2012-08-14 13:16:34 UTC (rev 125554)
@@ -1,3 +1,16 @@
+2012-08-14  Arvid Nilsson  <anils...@rim.com>
+
+        [BlackBerry] LayerCompositingThread.h doesn't compile
+        https://bugs.webkit.org/show_bug.cgi?id=93956
+
+        Reviewed by Rob Buis.
+
+        I forgot to upstream this local change.
+
+        * platform/graphics/blackberry/LayerCompositingThread.h:
+        (WebCore::LayerOverride::setBounds):
+        (WebCore::LayerOverride::setOpacity):
+
 2012-08-14  Ed Baker  <edba...@rim.com>
 
         [BlackBerry] LayerAnimation is not immutable, which makes dereferencing an expensive operation

Modified: trunk/Source/WebCore/platform/graphics/blackberry/LayerCompositingThread.h (125553 => 125554)


--- trunk/Source/WebCore/platform/graphics/blackberry/LayerCompositingThread.h	2012-08-14 12:52:56 UTC (rev 125553)
+++ trunk/Source/WebCore/platform/graphics/blackberry/LayerCompositingThread.h	2012-08-14 13:16:34 UTC (rev 125554)
@@ -73,7 +73,7 @@
 
     bool isBoundsSet() const { return m_boundsSet; }
     IntSize bounds() const { return m_bounds; }
-    void setBounds(const IntSize&) { m_bounds = bounds; m_boundsSet = true; }
+    void setBounds(const IntSize& bounds) { m_bounds = bounds; m_boundsSet = true; }
 
     bool isTransformSet() const { return m_transformSet; }
     const TransformationMatrix& transform() const { return m_transform; }
@@ -81,7 +81,7 @@
 
     bool isOpacitySet() const { return m_opacitySet; }
     float opacity() const { return m_opacity; }
-    void setOpacity(float) { m_opacity = opacity; m_opacitySet = true; }
+    void setOpacity(float opacity) { m_opacity = opacity; m_opacitySet = true; }
 
     bool isBoundsOriginSet() const { return m_boundsOriginSet; }
     FloatPoint boundsOrigin() const { return m_boundsOrigin; }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to