Title: [121134] trunk/Source/WebKit2
Revision
121134
Author
[email protected]
Date
2012-06-24 20:28:27 -0700 (Sun, 24 Jun 2012)

Log Message

[WK2][Qt][EFL] Modify Qt specific code to common code
https://bugs.webkit.org/show_bug.cgi?id=89839

Patch by YoungTaeck Song <[email protected]> on 2012-06-24
Reviewed by Noam Rosenthal.

Modify paintToGraphicsContext’s first argument QPainter to PlatformGraphicsContext to be used by both Qt and Efl.

* UIProcess/WebLayerTreeRenderer.cpp:
(WebKit::WebLayerTreeRenderer::paintToGraphicsContext):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (121133 => 121134)


--- trunk/Source/WebKit2/ChangeLog	2012-06-25 03:25:25 UTC (rev 121133)
+++ trunk/Source/WebKit2/ChangeLog	2012-06-25 03:28:27 UTC (rev 121134)
@@ -1,3 +1,15 @@
+2012-06-24  YoungTaeck Song  <[email protected]>
+
+        [WK2][Qt][EFL] Modify Qt specific code to common code
+        https://bugs.webkit.org/show_bug.cgi?id=89839
+
+        Reviewed by Noam Rosenthal.
+
+        Modify paintToGraphicsContext’s first argument QPainter to PlatformGraphicsContext to be used by both Qt and Efl.
+
+        * UIProcess/WebLayerTreeRenderer.cpp:
+        (WebKit::WebLayerTreeRenderer::paintToGraphicsContext):
+
 2012-06-24  Simon Fraser  <[email protected]>
 
         Rename isPositioned to isOutOfFlowPositioned for clarity

Modified: trunk/Source/WebKit2/UIProcess/WebLayerTreeRenderer.cpp (121133 => 121134)


--- trunk/Source/WebKit2/UIProcess/WebLayerTreeRenderer.cpp	2012-06-25 03:25:25 UTC (rev 121133)
+++ trunk/Source/WebKit2/UIProcess/WebLayerTreeRenderer.cpp	2012-06-25 03:28:27 UTC (rev 121134)
@@ -142,7 +142,7 @@
     m_textureMapper->endPainting();
 }
 
-void WebLayerTreeRenderer::paintToGraphicsContext(QPainter* painter)
+void WebLayerTreeRenderer::paintToGraphicsContext(BackingStore::PlatformGraphicsContext painter)
 {
     if (!m_textureMapper)
         m_textureMapper = TextureMapper::create();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to