Title: [137716] trunk/Source/WebKit2
Revision
137716
Author
[email protected]
Date
2012-12-13 23:30:53 -0800 (Thu, 13 Dec 2012)

Log Message

Fix build warning
https://bugs.webkit.org/show_bug.cgi?id=104978

Patch by Sanghyup Lee <[email protected]> on 2012-12-13
Reviewed by Kentaro Hara.

Initialize parameter 'downloadID' to fix 'unused parameter' build warning.

* WebProcess/Downloads/Download.cpp:
(WebKit::Download::Download):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (137715 => 137716)


--- trunk/Source/WebKit2/ChangeLog	2012-12-14 06:50:52 UTC (rev 137715)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-14 07:30:53 UTC (rev 137716)
@@ -1,3 +1,15 @@
+2012-12-13  Sanghyup Lee  <[email protected]>
+
+        Fix build warning
+        https://bugs.webkit.org/show_bug.cgi?id=104978
+
+        Reviewed by Kentaro Hara.
+
+        Initialize parameter 'downloadID' to fix 'unused parameter' build warning.
+
+        * WebProcess/Downloads/Download.cpp:
+        (WebKit::Download::Download):
+
 2012-12-13  Alexey Proskuryakov  <[email protected]>
 
         Resource loads sometimes stall

Modified: trunk/Source/WebKit2/WebProcess/Downloads/Download.cpp (137715 => 137716)


--- trunk/Source/WebKit2/WebProcess/Downloads/Download.cpp	2012-12-14 06:50:52 UTC (rev 137715)
+++ trunk/Source/WebKit2/WebProcess/Downloads/Download.cpp	2012-12-14 07:30:53 UTC (rev 137716)
@@ -46,6 +46,7 @@
 
 Download::Download(DownloadManager& downloadManager, uint64_t downloadID, const ResourceRequest& request)
     : m_downloadManager(downloadManager)
+    , m_downloadID(downloadID)
     , m_request(request)
 #if USE(CFNETWORK)
     , m_allowOverwrite(false)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to