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 20f8b5817eed4dfaa950ba8613ccb802c82c9416..fc186896a07b57c1fc4b839099ac8879c51cbe01 100644 |
--- a/content/child/web_url_loader_impl.h |
+++ b/content/child/web_url_loader_impl.h |
@@ -28,10 +28,14 @@ struct ResourceResponseInfo; |
// PlzNavigate: Used to override parameters of the navigation request. |
struct StreamOverrideParameters { |
public: |
+ StreamOverrideParameters(); |
+ ~StreamOverrideParameters(); |
// TODO(clamy): The browser should be made aware on destruction of this struct |
// that it can release its associated stream handle. |
GURL stream_url; |
ResourceResponseHead response; |
+ std::vector<GURL> redirects; |
+ std::vector<ResourceResponseInfo> redirect_responses; |
}; |
class CONTENT_EXPORT WebURLLoaderImpl |