Title: [167660] trunk/Source/WebKit2
Revision
167660
Author
commit-qu...@webkit.org
Date
2014-04-22 08:19:02 -0700 (Tue, 22 Apr 2014)

Log Message

[WebKit2] Cleanup the build from unused parameter in WebProcess Module
https://bugs.webkit.org/show_bug.cgi?id=131970

Patch by Shivakumar JM <shiva...@samsung.com> on 2014-04-22
Reviewed by Darin Adler.

Fix a build warning by removing the parameters in function paintLayerContents() to fix build warning.

* WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:
(WebKit::CoordinatedLayerTreeHost::paintLayerContents):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (167659 => 167660)


--- trunk/Source/WebKit2/ChangeLog	2014-04-22 14:17:43 UTC (rev 167659)
+++ trunk/Source/WebKit2/ChangeLog	2014-04-22 15:19:02 UTC (rev 167660)
@@ -1,3 +1,15 @@
+2014-04-22  Shivakumar JM  <shiva...@samsung.com>
+
+        [WebKit2] Cleanup the build from unused parameter in WebProcess Module 
+        https://bugs.webkit.org/show_bug.cgi?id=131970
+
+        Reviewed by Darin Adler.
+
+        Fix a build warning by removing the parameters in function paintLayerContents() to fix build warning.
+
+        * WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp:
+        (WebKit::CoordinatedLayerTreeHost::paintLayerContents):
+
 2014-04-22  Carlos Garcia Campos  <cgar...@igalia.com>
 
         [GTK] Crash after getting web view context property with g_object_get

Modified: trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp (167659 => 167660)


--- trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp	2014-04-22 14:17:43 UTC (rev 167659)
+++ trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.cpp	2014-04-22 15:19:02 UTC (rev 167660)
@@ -206,7 +206,7 @@
     performScheduledLayerFlush();
 }
 
-void CoordinatedLayerTreeHost::paintLayerContents(const GraphicsLayer* graphicsLayer, GraphicsContext& graphicsContext, const IntRect& clipRect)
+void CoordinatedLayerTreeHost::paintLayerContents(const GraphicsLayer*, GraphicsContext&, const IntRect&)
 {
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to