Title: [160757] trunk/Source/WebCore
Revision
160757
Author
[email protected]
Date
2013-12-18 04:01:29 -0800 (Wed, 18 Dec 2013)

Log Message

[soup] Fix unused parameter warnings in ResourceHandleSoup.
https://bugs.webkit.org/show_bug.cgi?id=125918

Patch by Dániel Bátyai <[email protected]> on 2013-12-18
Reviewed by Martin Robinson.

Comment out the method parameters to avoid the warnings.

No tests required.

* platform/network/soup/ResourceHandleSoup.cpp:
(WebCore::WebCoreSynchronousLoader::didReceiveData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (160756 => 160757)


--- trunk/Source/WebCore/ChangeLog	2013-12-18 11:41:08 UTC (rev 160756)
+++ trunk/Source/WebCore/ChangeLog	2013-12-18 12:01:29 UTC (rev 160757)
@@ -1,3 +1,17 @@
+2013-12-18  Dániel Bátyai  <[email protected]>
+
+        [soup] Fix unused parameter warnings in ResourceHandleSoup.
+        https://bugs.webkit.org/show_bug.cgi?id=125918
+
+        Reviewed by Martin Robinson.
+
+        Comment out the method parameters to avoid the warnings.
+
+        No tests required.
+
+        * platform/network/soup/ResourceHandleSoup.cpp:
+        (WebCore::WebCoreSynchronousLoader::didReceiveData):
+
 2013-12-17  Jer Noble  <[email protected]>
 
         [MSE] Periodically monitor source buffers.

Modified: trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp (160756 => 160757)


--- trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2013-12-18 11:41:08 UTC (rev 160756)
+++ trunk/Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp	2013-12-18 12:01:29 UTC (rev 160757)
@@ -144,7 +144,7 @@
         m_response = response;
     }
 
-    virtual void didReceiveData(ResourceHandle*, const char* data, int length, int)
+    virtual void didReceiveData(ResourceHandle*, const char* /* data */, int /* length */, int)
     {
         ASSERT_NOT_REACHED();
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to