Title: [112519] trunk/Source/WebCore
Revision
112519
Author
[email protected]
Date
2012-03-29 04:56:54 -0700 (Thu, 29 Mar 2012)

Log Message

[BlackBerry] Clean up ImageBufferData
https://bugs.webkit.org/show_bug.cgi?id=82444

Patch by Robin Cao <[email protected]> on 2012-03-29
Reviewed by Rob Buis.

No behavior changes, no new tests.

* platform/graphics/blackberry/skia/ImageBufferDataSkia.h:
(ImageBufferData): Remove unused member variable m_buffer and change the type
of m_platformLayer from LayerWebKitThread to CanvasLayerWebKitThread.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (112518 => 112519)


--- trunk/Source/WebCore/ChangeLog	2012-03-29 11:47:11 UTC (rev 112518)
+++ trunk/Source/WebCore/ChangeLog	2012-03-29 11:56:54 UTC (rev 112519)
@@ -1,3 +1,16 @@
+2012-03-29  Robin Cao  <[email protected]>
+
+        [BlackBerry] Clean up ImageBufferData
+        https://bugs.webkit.org/show_bug.cgi?id=82444
+
+        Reviewed by Rob Buis.
+
+        No behavior changes, no new tests.
+
+        * platform/graphics/blackberry/skia/ImageBufferDataSkia.h:
+        (ImageBufferData): Remove unused member variable m_buffer and change the type
+        of m_platformLayer from LayerWebKitThread to CanvasLayerWebKitThread.
+
 2012-03-28  Antti Koivisto  <[email protected]>
 
         Split WebKitCSSKeyframeRule into internal and CSSOM types 

Modified: trunk/Source/WebCore/platform/graphics/blackberry/skia/ImageBufferDataSkia.h (112518 => 112519)


--- trunk/Source/WebCore/platform/graphics/blackberry/skia/ImageBufferDataSkia.h	2012-03-29 11:47:11 UTC (rev 112518)
+++ trunk/Source/WebCore/platform/graphics/blackberry/skia/ImageBufferDataSkia.h	2012-03-29 11:56:54 UTC (rev 112519)
@@ -35,7 +35,7 @@
 #include "BlackBerryPlatformGraphics.h"
 #include "PlatformContextSkia.h"
 #if USE(ACCELERATED_COMPOSITING)
-#include "LayerWebKitThread.h"
+#include "CanvasLayerWebKitThread.h"
 #endif
 
 namespace WebCore {
@@ -46,9 +46,8 @@
 
     OwnPtr<SkCanvas> m_canvas;
     PlatformContextSkia m_platformContext;
-    BlackBerry::Platform::Graphics::Buffer* m_buffer;
 #if USE(ACCELERATED_COMPOSITING)
-    RefPtr<LayerWebKitThread> m_platformLayer;
+    RefPtr<CanvasLayerWebKitThread> m_platformLayer;
 #endif
 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to