Title: [100771] trunk/Source/WebKit2
Revision
100771
Author
[email protected]
Date
2011-11-18 06:50:57 -0800 (Fri, 18 Nov 2011)

Log Message

[GTK] Send DidCreateDestination to DownloadProxy when destination has been created
https://bugs.webkit.org/show_bug.cgi?id=72724

Reviewed by Martin Robinson.

* WebProcess/Downloads/soup/DownloadSoup.cpp:
(WebKit::DownloadClient::didReceiveResponse): Call
didCreateDestination() when destination URI has been successfully
created.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (100770 => 100771)


--- trunk/Source/WebKit2/ChangeLog	2011-11-18 14:48:40 UTC (rev 100770)
+++ trunk/Source/WebKit2/ChangeLog	2011-11-18 14:50:57 UTC (rev 100771)
@@ -1,5 +1,17 @@
 2011-11-18  Carlos Garcia Campos  <[email protected]>
 
+        [GTK] Send DidCreateDestination to DownloadProxy when destination has been created
+        https://bugs.webkit.org/show_bug.cgi?id=72724
+
+        Reviewed by Martin Robinson.
+
+        * WebProcess/Downloads/soup/DownloadSoup.cpp:
+        (WebKit::DownloadClient::didReceiveResponse): Call
+        didCreateDestination() when destination URI has been successfully
+        created.
+
+2011-11-18  Carlos Garcia Campos  <[email protected]>
+
         [GTK] Cancel current download operation before download object is deleted
         https://bugs.webkit.org/show_bug.cgi?id=72721
 

Modified: trunk/Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp (100770 => 100771)


--- trunk/Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp	2011-11-18 14:48:40 UTC (rev 100770)
+++ trunk/Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp	2011-11-18 14:50:57 UTC (rev 100771)
@@ -88,6 +88,8 @@
             downloadFailed(downloadDestinationError(response, error->message));
             return;
         }
+
+        m_download->didCreateDestination(destinationURI);
     }
 
     void didReceiveData(ResourceHandle*, const char* data, int length, int /*encodedDataLength*/)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to