| Index: content/child/web_url_loader_impl.h
|
| diff --git a/content/child/web_url_loader_impl.h b/content/child/web_url_loader_impl.h
|
| index 804d1b0bb824972400e8c4443166335df08b5e83..1f134fe8eb5a530359c61bb8012fe4908313f0ea 100644
|
| --- a/content/child/web_url_loader_impl.h
|
| +++ b/content/child/web_url_loader_impl.h
|
| @@ -9,6 +9,7 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/common/resource_response.h"
|
| +#include "mojo/public/cpp/system/data_pipe.h"
|
| #include "net/url_request/redirect_info.h"
|
| #include "third_party/WebKit/public/platform/WebURLLoader.h"
|
| #include "url/gurl.h"
|
| @@ -27,10 +28,11 @@ struct ResourceResponseInfo;
|
| // PlzNavigate: Used to override parameters of the navigation request.
|
| struct StreamOverrideParameters {
|
| public:
|
| - // TODO(clamy): The browser should be made aware on destruction of this struct
|
| - // that it can release its associated stream handle.
|
| - GURL stream_url;
|
| + StreamOverrideParameters();
|
| + ~StreamOverrideParameters();
|
| ResourceResponseHead response;
|
| + mojo::ScopedDataPipeConsumerHandle mojo_handle;
|
| + int browser_request_id;
|
| };
|
|
|
| class CONTENT_EXPORT WebURLLoaderImpl
|
|
|