diff options
Diffstat (limited to 'Source/WebKit2/WebProcess/Downloads')
5 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp b/Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp index 1cb288e..4a96b11 100644 --- a/Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp +++ b/Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp @@ -78,7 +78,7 @@ void DownloadManager::downloadFinished(Download* download) delete download; - WebProcess::shared().shutdownIfPossible(); + WebProcess::shared().terminateIfPossible(); } } // namespace WebKit diff --git a/Source/WebKit2/WebProcess/Downloads/cf/DownloadCFNet.cpp b/Source/WebKit2/WebProcess/Downloads/cf/DownloadCFNet.cpp index c8a065e..3215039 100644 --- a/Source/WebKit2/WebProcess/Downloads/cf/DownloadCFNet.cpp +++ b/Source/WebKit2/WebProcess/Downloads/cf/DownloadCFNet.cpp @@ -27,11 +27,11 @@ #include "Download.h" #include "DataReference.h" -#include "NotImplemented.h" #pragma warning(push, 0) #include <WebCore/DownloadBundle.h> #include <WebCore/LoaderRunLoopCF.h> +#include <WebCore/NotImplemented.h> #include <WebCore/ResourceError.h> #include <WebCore/ResourceHandle.h> #include <WebCore/ResourceResponse.h> diff --git a/Source/WebKit2/WebProcess/Downloads/curl/DownloadCurl.cpp b/Source/WebKit2/WebProcess/Downloads/curl/DownloadCurl.cpp index eb0a1cd..6ebce01 100644 --- a/Source/WebKit2/WebProcess/Downloads/curl/DownloadCurl.cpp +++ b/Source/WebKit2/WebProcess/Downloads/curl/DownloadCurl.cpp @@ -27,7 +27,7 @@ #include "config.h" #include "Download.h" -#include "NotImplemented.h" +#include <WebCore/NotImplemented.h> using namespace WebCore; diff --git a/Source/WebKit2/WebProcess/Downloads/mac/DownloadMac.mm b/Source/WebKit2/WebProcess/Downloads/mac/DownloadMac.mm index 0abd744..f7fe8dc 100644 --- a/Source/WebKit2/WebProcess/Downloads/mac/DownloadMac.mm +++ b/Source/WebKit2/WebProcess/Downloads/mac/DownloadMac.mm @@ -28,11 +28,11 @@ #import <WebCore/BackForwardController.h> #import <WebCore/HistoryItem.h> +#import <WebCore/NotImplemented.h> #import <WebCore/Page.h> #import <WebCore/ResourceHandle.h> #import <WebCore/ResourceResponse.h> #import "DataReference.h" -#import "NotImplemented.h" #import "WebPage.h" @interface NSURLDownload (WebNSURLDownloadDetails) diff --git a/Source/WebKit2/WebProcess/Downloads/qt/DownloadQt.cpp b/Source/WebKit2/WebProcess/Downloads/qt/DownloadQt.cpp index 131f53a..19b86f0 100644 --- a/Source/WebKit2/WebProcess/Downloads/qt/DownloadQt.cpp +++ b/Source/WebKit2/WebProcess/Downloads/qt/DownloadQt.cpp @@ -26,7 +26,7 @@ #include "config.h" #include "Download.h" -#include "NotImplemented.h" +#include <WebCore/NotImplemented.h> using namespace WebCore; |