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

Unified Diff: content/common/throttling_url_loader.h

Issue 2926693002: Make content::ThrottlingURLLoader take a task runner and more efficient. (Closed)
Patch Set: sync & resolve Created 3 years, 6 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
« no previous file with comments | « content/child/url_loader_client_impl.cc ('k') | content/common/throttling_url_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/throttling_url_loader.h
diff --git a/content/common/throttling_url_loader.h b/content/common/throttling_url_loader.h
index 202d51dc31a31be214ce478dc19c427e3458d59e..98dc5e43d60868e61def6f97dbceb53ae96cea52 100644
--- a/content/common/throttling_url_loader.h
+++ b/content/common/throttling_url_loader.h
@@ -7,12 +7,18 @@
#include <memory>
+#include "base/memory/ref_counted.h"
+#include "base/threading/thread_task_runner_handle.h"
#include "content/common/content_export.h"
#include "content/common/url_loader.mojom.h"
#include "content/common/url_loader_factory.mojom.h"
#include "content/public/common/url_loader_throttle.h"
#include "mojo/public/cpp/bindings/binding.h"
+namespace base {
+class SingleThreadTaskRunner;
+}
+
namespace content {
namespace mojom {
@@ -34,7 +40,9 @@ class CONTENT_EXPORT ThrottlingURLLoader : public mojom::URLLoaderClient,
int32_t request_id,
uint32_t options,
std::unique_ptr<ResourceRequest> url_request,
- mojom::URLLoaderClient* client);
+ mojom::URLLoaderClient* client,
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner =
+ base::ThreadTaskRunnerHandle::Get());
~ThrottlingURLLoader() override;
@@ -49,7 +57,8 @@ class CONTENT_EXPORT ThrottlingURLLoader : public mojom::URLLoaderClient,
int32_t routing_id,
int32_t request_id,
uint32_t options,
- std::unique_ptr<ResourceRequest> url_request);
+ std::unique_ptr<ResourceRequest> url_request,
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner);
// mojom::URLLoaderClient implementation:
void OnReceiveResponse(const ResourceResponseHead& response_head,
@@ -87,27 +96,60 @@ class CONTENT_EXPORT ThrottlingURLLoader : public mojom::URLLoaderClient,
mojom::URLLoaderAssociatedPtr url_loader_;
+ struct StartInfo {
+ StartInfo(mojom::URLLoaderFactory* in_url_loader_factory,
+ int32_t in_routing_id,
+ int32_t in_request_id,
+ uint32_t in_options,
+ std::unique_ptr<ResourceRequest> in_url_request,
+ scoped_refptr<base::SingleThreadTaskRunner> in_task_runner);
+ ~StartInfo();
+
+ mojom::URLLoaderFactory* url_loader_factory;
+ int32_t routing_id;
+ int32_t request_id;
+ uint32_t options;
+ std::unique_ptr<ResourceRequest> url_request;
+ // |task_runner_| is used to set up |client_binding_|.
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner;
+ };
// Set if start is deferred.
- mojom::URLLoaderFactory* url_loader_factory_ = nullptr;
- int32_t routing_id_ = -1;
- int32_t request_id_ = -1;
- uint32_t options_ = mojom::kURLLoadOptionNone;
- std::unique_ptr<ResourceRequest> url_request_;
+ std::unique_ptr<StartInfo> start_info_;
- // Set if either response or redirect is deferred.
- ResourceResponseHead response_head_;
+ struct ResponseInfo {
+ ResponseInfo(const ResourceResponseHead& in_response_head,
+ const base::Optional<net::SSLInfo>& in_ssl_info,
+ mojom::DownloadedTempFilePtr in_downloaded_file);
+ ~ResponseInfo();
+ ResourceResponseHead response_head;
+ base::Optional<net::SSLInfo> ssl_info;
+ mojom::DownloadedTempFilePtr downloaded_file;
+ };
// Set if response is deferred.
- base::Optional<net::SSLInfo> ssl_info_;
- mojom::DownloadedTempFilePtr downloaded_file_;
+ std::unique_ptr<ResponseInfo> response_info_;
+ struct RedirectInfo {
+ RedirectInfo(const net::RedirectInfo& in_redirect_info,
+ const ResourceResponseHead& in_response_head);
+ ~RedirectInfo();
+
+ net::RedirectInfo redirect_info;
+ ResourceResponseHead response_head;
+ };
// Set if redirect is deferred.
- net::RedirectInfo redirect_info_;
+ std::unique_ptr<RedirectInfo> redirect_info_;
+ struct PriorityInfo {
+ PriorityInfo(net::RequestPriority in_priority,
+ int32_t in_intra_priority_value);
+ ~PriorityInfo();
+
+ net::RequestPriority priority;
+ int32_t intra_priority_value;
+ };
// Set if request is deferred and SetPriority() is called.
- bool set_priority_cached_ = false;
- net::RequestPriority priority_ = net::MINIMUM_PRIORITY;
- int32_t intra_priority_value_ = 0;
+ std::unique_ptr<PriorityInfo> priority_info_;
DISALLOW_COPY_AND_ASSIGN(ThrottlingURLLoader);
};
« no previous file with comments | « content/child/url_loader_client_impl.cc ('k') | content/common/throttling_url_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698