Title: [141078] trunk/Source/WebKit2
Revision
141078
Author
commit-qu...@webkit.org
Date
2013-01-29 00:55:08 -0800 (Tue, 29 Jan 2013)

Log Message

[WK2] Fix unused parameter build warning
https://bugs.webkit.org/show_bug.cgi?id=108156

Patch by Jinwoo Song <jinwoo7.s...@samsung.com> on 2013-01-29
Reviewed by Kentaro Hara.

Comment out the unused parameters to fix the build warnings.

* WebProcess/Plugins/Netscape/NetscapePlugin.h:
* WebProcess/Plugins/PluginProxy.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (141077 => 141078)


--- trunk/Source/WebKit2/ChangeLog	2013-01-29 08:51:44 UTC (rev 141077)
+++ trunk/Source/WebKit2/ChangeLog	2013-01-29 08:55:08 UTC (rev 141078)
@@ -1,3 +1,15 @@
+2013-01-29  Jinwoo Song  <jinwoo7.s...@samsung.com>
+
+        [WK2] Fix unused parameter build warning
+        https://bugs.webkit.org/show_bug.cgi?id=108156
+
+        Reviewed by Kentaro Hara.
+
+        Comment out the unused parameters to fix the build warnings.
+
+        * WebProcess/Plugins/Netscape/NetscapePlugin.h:
+        * WebProcess/Plugins/PluginProxy.h:
+
 2013-01-28  Jae Hyun Park  <jae.p...@company100.net>
 
         [Qt] Build fix

Modified: trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h (141077 => 141078)


--- trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h	2013-01-29 08:51:44 UTC (rev 141077)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h	2013-01-29 08:55:08 UTC (rev 141078)
@@ -247,7 +247,7 @@
     // converted (if the transformation matrix isn't invertible).
     bool convertFromRootView(const WebCore::IntPoint& pointInRootViewCoordinates, WebCore::IntPoint& pointInPluginCoordinates);
 
-    virtual bool getResourceData(const unsigned char*& bytes, unsigned& length) const OVERRIDE { return false; }
+    virtual bool getResourceData(const unsigned char*& /* bytes */, unsigned& /* length */) const OVERRIDE { return false; }
 
     void updateNPNPrivateMode();
 

Modified: trunk/Source/WebKit2/WebProcess/Plugins/PluginProxy.h (141077 => 141078)


--- trunk/Source/WebKit2/WebProcess/Plugins/PluginProxy.h	2013-01-29 08:51:44 UTC (rev 141077)
+++ trunk/Source/WebKit2/WebProcess/Plugins/PluginProxy.h	2013-01-29 08:55:08 UTC (rev 141078)
@@ -133,7 +133,7 @@
 
     virtual WebCore::IntPoint convertToRootView(const WebCore::IntPoint&) const OVERRIDE;
 
-    virtual bool getResourceData(const unsigned char*& bytes, unsigned& length) const OVERRIDE { return false; }
+    virtual bool getResourceData(const unsigned char*& /* bytes */, unsigned& /* length */) const OVERRIDE { return false; }
 
     float contentsScaleFactor();
     bool needsBackingStore() const;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to