Title: [137058] trunk/Source
Revision
137058
Author
[email protected]
Date
2012-12-09 00:13:51 -0800 (Sun, 09 Dec 2012)

Log Message

Fix unused parameter compile warnings
https://bugs.webkit.org/show_bug.cgi?id=104463

Patch by Kangil Han <[email protected]> on 2012-12-09
Reviewed by Kentaro Hara.

Remove compile warning messages by omitting parameter name.

Source/WebCore:

* platform/graphics/surfaces/GraphicsSurface.cpp:
(WebCore::GraphicsSurface::GraphicsSurface):

Source/WebKit2:

* UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp:
(WebKit::LayerTreeRenderer::createCanvas):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (137057 => 137058)


--- trunk/Source/WebCore/ChangeLog	2012-12-09 07:46:55 UTC (rev 137057)
+++ trunk/Source/WebCore/ChangeLog	2012-12-09 08:13:51 UTC (rev 137058)
@@ -1,3 +1,15 @@
+2012-12-09  Kangil Han  <[email protected]>
+
+        Fix unused parameter compile warnings
+        https://bugs.webkit.org/show_bug.cgi?id=104463
+
+        Reviewed by Kentaro Hara.
+
+        Remove compile warning messages by omitting parameter name.
+
+        * platform/graphics/surfaces/GraphicsSurface.cpp:
+        (WebCore::GraphicsSurface::GraphicsSurface):
+
 2012-12-08  Rakesh KN  <[email protected]>
 
         Build break if SVG is disabled

Modified: trunk/Source/WebCore/platform/graphics/surfaces/GraphicsSurface.cpp (137057 => 137058)


--- trunk/Source/WebCore/platform/graphics/surfaces/GraphicsSurface.cpp	2012-12-09 07:46:55 UTC (rev 137057)
+++ trunk/Source/WebCore/platform/graphics/surfaces/GraphicsSurface.cpp	2012-12-09 08:13:51 UTC (rev 137058)
@@ -83,7 +83,7 @@
     return platformSize();
 }
 
-GraphicsSurface::GraphicsSurface(const IntSize& size, Flags flags)
+GraphicsSurface::GraphicsSurface(const IntSize&, Flags flags)
     : m_flags(flags)
     , m_platformSurface(0)
     , m_texture(0)

Modified: trunk/Source/WebKit2/ChangeLog (137057 => 137058)


--- trunk/Source/WebKit2/ChangeLog	2012-12-09 07:46:55 UTC (rev 137057)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-09 08:13:51 UTC (rev 137058)
@@ -1,3 +1,15 @@
+2012-12-09  Kangil Han  <[email protected]>
+
+        Fix unused parameter compile warnings
+        https://bugs.webkit.org/show_bug.cgi?id=104463
+
+        Reviewed by Kentaro Hara.
+
+        Remove compile warning messages by omitting parameter name.
+
+        * UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp:
+        (WebKit::LayerTreeRenderer::createCanvas):
+
 2012-12-08  Seokju Kwon  <[email protected]>
 
         [EFL][WK2] Add Remote Web Inspector

Modified: trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp (137057 => 137058)


--- trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp	2012-12-09 07:46:55 UTC (rev 137057)
+++ trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeRenderer.cpp	2012-12-09 08:13:51 UTC (rev 137058)
@@ -227,7 +227,7 @@
 }
 
 #if USE(GRAPHICS_SURFACE)
-void LayerTreeRenderer::createCanvas(CoordinatedLayerID id, const WebCore::IntSize& canvasSize, PassRefPtr<GraphicsSurface> surface)
+void LayerTreeRenderer::createCanvas(CoordinatedLayerID id, const WebCore::IntSize&, PassRefPtr<GraphicsSurface> surface)
 {
     ASSERT(m_textureMapper);
     GraphicsLayer* layer = layerByID(id);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to