Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Unified Diff: content/browser/loader/resource_dispatcher_host_impl.h

Issue 2251643003: Remove the BeginSaveFile and BeginDownload methods from ResourceDispatcherHostImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initialize tab_info_ in OnStart instead of OnResponseStart because we need a central place where al… Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/loader/resource_dispatcher_host_impl.h
diff --git a/content/browser/loader/resource_dispatcher_host_impl.h b/content/browser/loader/resource_dispatcher_host_impl.h
index 577502e169eddf705776b3f9f1dce51fc50a14a2..1b34492f28303011914f07a106efd567223dee2e 100644
--- a/content/browser/loader/resource_dispatcher_host_impl.h
+++ b/content/browser/loader/resource_dispatcher_host_impl.h
@@ -24,7 +24,6 @@
#include "base/observer_list.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
-#include "content/browser/download/download_resource_handler.h"
#include "content/browser/download/save_types.h"
#include "content/browser/loader/global_routing_id.h"
#include "content/browser/loader/resource_loader.h"
@@ -65,12 +64,12 @@ class NavigationURLLoaderImplCore;
class RenderFrameHostImpl;
class ResourceContext;
class ResourceDispatcherHostDelegate;
+class ResourceHandler;
class ResourceMessageDelegate;
class ResourceMessageFilter;
class ResourceRequestInfoImpl;
class ServiceWorkerNavigationHandleCore;
struct CommonNavigationParams;
-struct DownloadSaveInfo;
struct NavigationRequestInfo;
struct Referrer;
struct ResourceRequest;
@@ -79,6 +78,9 @@ namespace mojom {
class URLLoader;
} // namespace mojom
+using CreateDownloadHandlerIntercept =
+ base::Callback<std::unique_ptr<ResourceHandler>(net::URLRequest*)>;
+
class CONTENT_EXPORT ResourceDispatcherHostImpl
: public ResourceDispatcherHost,
public ResourceLoaderDelegate {
@@ -129,27 +131,6 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
bool OnMessageReceived(const IPC::Message& message,
ResourceMessageFilter* filter);
- DownloadInterruptReason BeginDownload(
- std::unique_ptr<net::URLRequest> request,
- const Referrer& referrer,
- bool is_content_initiated,
- ResourceContext* context,
- int render_process_id,
- int render_view_route_id,
- int render_frame_route_id,
- bool do_not_prompt_for_login);
-
- // Initiates a save file from the browser process (as opposed to a resource
- // request from the renderer or another child process).
- void BeginSaveFile(const GURL& url,
- const Referrer& referrer,
- SaveItemId save_item_id,
- SavePackageId save_package_id,
- int child_id,
- int render_view_route_id,
- int render_frame_route_id,
- ResourceContext* context);
-
// Cancels the given request if it still exists.
void CancelRequest(int child_id, int request_id);
@@ -244,6 +225,8 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
// Must be called after the ResourceRequestInfo has been created
// and associated with the request.
// This is marked virtual so it can be overriden in testing.
+ // TODO(ananta)
+ // This method should be removed or moved outside this class.
virtual std::unique_ptr<ResourceHandler> CreateResourceHandlerForDownload(
net::URLRequest* request,
bool is_content_initiated,
@@ -309,6 +292,40 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
mojom::URLLoaderClientPtr url_loader_client,
ResourceMessageFilter* filter);
+ // This enum contains possible return values for the BeginURLRequest()
+ // function declared below.
+ enum URLRequestStatus {
mmenke 2016/08/22 14:40:08 Given that we already have a net::URLRequestState
ananta 2016/08/22 19:14:57 Left it as void. It does not return anything usefu
+ URL_REQUEST_FAILED_SHUTDOWN = 0,
+ URL_REQUEST_ISSUED = 1,
+ URL_REQUEST_LAST = URL_REQUEST_ISSUED,
+ };
+
+ // Helper function for initiating a URL request. The |is_download| and
+ // |is_content_initiated and |do_not_prompt_for_login| parameters are
+ // specific to download requests.
+ // TODO(ananta)
+ // Look into a better way of passing these parameters in.
+ // Returns values defined in the URLRequestStatus enum above.
+ URLRequestStatus BeginURLRequest(std::unique_ptr<net::URLRequest> request,
+ std::unique_ptr<ResourceHandler> handler,
+ const Referrer& referrer,
+ bool is_download,
+ bool is_content_initiated,
+ bool do_not_prompt_for_login,
+ int render_process_host_id,
+ int render_view_routing_id,
+ int render_frame_routing_id,
+ ResourceContext* context);
+
+ bool is_shutdown() const { return is_shutdown_; }
Randy Smith (Not in Mondays) 2016/08/21 23:32:57 I don't think this function is needed anymore?
ananta 2016/08/22 19:14:57 Needed. We check the shutdown state in the Downloa
+
+ // Registers the |intercept| as the callback to be invoked when the download
+ // handler is created for handling downloads.
+ // TODO(ananta)
+ // Investigate if we can find a better way to do this.
+ void RegisterCreateDownloadHandlerInterceptor(
+ CreateDownloadHandlerIntercept intercept);
+
private:
friend class ResourceDispatcherHostTest;
@@ -378,7 +395,7 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
// A shutdown helper that runs on the IO thread.
void OnShutdown();
- // Helper function for regular and download requests.
+ // Helper function for URL requests.
void BeginRequestInternal(std::unique_ptr<net::URLRequest> request,
std::unique_ptr<ResourceHandler> handler);
@@ -615,6 +632,17 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
ResourceMessageFilter* filter,
ResourceContext* resource_context);
+ // Notifies the ResourceDispatcherHostDelegate about a download having
+ // started. The function returns the |handler| passed in, if the download
+ // is not throttled. If the download is to be throttled (Decided by the
+ // delegate) the function returns a ThrottlingResourceHandler to handle the
+ // download.
+ std::unique_ptr<ResourceHandler> HandleDownloadStarted(
+ net::URLRequest* request,
+ std::unique_ptr<ResourceHandler> handler,
+ bool is_content_initiated,
+ bool must_download);
+
LoaderMap pending_loaders_;
// Collection of temp files downloaded for child processes via
@@ -709,6 +737,9 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
// Used to invoke an interceptor for the HTTP header.
HeaderInterceptorMap http_header_interceptor_map_;
+ // Points to the registered download handler intercept.
+ CreateDownloadHandlerIntercept create_download_handler_intercept_;
+
DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHostImpl);
};

Powered by Google App Engine
This is Rietveld 408576698