Title: [125551] trunk/Source/WebCore
Revision
125551
Author
[email protected]
Date
2012-08-14 05:34:23 -0700 (Tue, 14 Aug 2012)

Log Message

[BlackBerry] GraphicsLayerBlackBerry::willBeDestroyed() must call superclass implementation
https://bugs.webkit.org/show_bug.cgi?id=93947

Patch by Arvid Nilsson <[email protected]> on 2012-08-14
Reviewed by Rob Buis.

This was fixed locally, but not upstreamed yet.

Based on an original patch by Konrad Piascik.

* platform/graphics/blackberry/GraphicsLayerBlackBerry.cpp:
(WebCore::GraphicsLayerBlackBerry::willBeDestroyed):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (125550 => 125551)


--- trunk/Source/WebCore/ChangeLog	2012-08-14 12:10:37 UTC (rev 125550)
+++ trunk/Source/WebCore/ChangeLog	2012-08-14 12:34:23 UTC (rev 125551)
@@ -1,3 +1,17 @@
+2012-08-14  Arvid Nilsson  <[email protected]>
+
+        [BlackBerry] GraphicsLayerBlackBerry::willBeDestroyed() must call superclass implementation
+        https://bugs.webkit.org/show_bug.cgi?id=93947
+
+        Reviewed by Rob Buis.
+
+        This was fixed locally, but not upstreamed yet.
+
+        Based on an original patch by Konrad Piascik.
+
+        * platform/graphics/blackberry/GraphicsLayerBlackBerry.cpp:
+        (WebCore::GraphicsLayerBlackBerry::willBeDestroyed):
+
 2012-08-14  Vineet Chaudhary  <[email protected]>
 
         Remove custom JSC bindings from ConvolverNode.idl

Modified: trunk/Source/WebCore/platform/graphics/blackberry/GraphicsLayerBlackBerry.cpp (125550 => 125551)


--- trunk/Source/WebCore/platform/graphics/blackberry/GraphicsLayerBlackBerry.cpp	2012-08-14 12:10:37 UTC (rev 125550)
+++ trunk/Source/WebCore/platform/graphics/blackberry/GraphicsLayerBlackBerry.cpp	2012-08-14 12:34:23 UTC (rev 125551)
@@ -105,6 +105,8 @@
         m_contentsLayer->setOwner(0);
     if (m_transformLayer)
         m_transformLayer->setOwner(0);
+
+    GraphicsLayer::willBeDestroyed();
 }
 
 void GraphicsLayerBlackBerry::setName(const String& inName)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to