| Index: content/child/request_info.h
|
| diff --git a/content/child/request_info.h b/content/child/request_info.h
|
| index 8b64807dbd84d83f8f56bc5072a2d5e29cbd1f79..2c55d82c6f60dddcb0870177e2b6408988c4bc56 100644
|
| --- a/content/child/request_info.h
|
| +++ b/content/child/request_info.h
|
| @@ -11,6 +11,7 @@
|
| #include <string>
|
|
|
| #include "base/macros.h"
|
| +#include "base/memory/ref_counted.h"
|
| #include "content/common/content_export.h"
|
| #include "content/common/service_worker/service_worker_types.h"
|
| #include "content/public/common/referrer.h"
|
| @@ -19,14 +20,13 @@
|
| #include "content/public/common/resource_type.h"
|
| #include "net/base/request_priority.h"
|
| #include "third_party/WebKit/public/platform/WebReferrerPolicy.h"
|
| -#include "third_party/WebKit/public/platform/WebTaskRunner.h"
|
| #include "third_party/WebKit/public/platform/WebURLRequest.h"
|
| #include "url/gurl.h"
|
| #include "url/origin.h"
|
|
|
| -namespace blink {
|
| -class WebTaskRunner;
|
| -} // namespace blink
|
| +namespace base {
|
| +class SingleThreadTaskRunner;
|
| +}
|
|
|
| namespace content {
|
|
|
| @@ -122,7 +122,7 @@ struct CONTENT_EXPORT RequestInfo {
|
| blink::WebURLRequest::ExtraData* extra_data;
|
|
|
| // Optional, the specific task queue to execute loading tasks on.
|
| - std::unique_ptr<blink::WebTaskRunner> loading_web_task_runner;
|
| + scoped_refptr<base::SingleThreadTaskRunner> loading_task_runner;
|
|
|
| // PlzNavigate: the stream URL to request during navigations to get access to
|
| // the ResourceBody that has already been fetched by the browser process.
|
|
|