mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Remove obselete request parameter. (#34867)
Signed-off-by: Shubham Gupta <shubham.gupta@chromium.org> Co-authored-by: Shubham Gupta <shubham.gupta@chromium.org>
This commit is contained in:
parent
7142a96d36
commit
ab52cdae1f
1 changed files with 0 additions and 3 deletions
|
@ -479,8 +479,6 @@ pub struct Request {
|
||||||
pub method: Method,
|
pub method: Method,
|
||||||
/// <https://fetch.spec.whatwg.org/#local-urls-only-flag>
|
/// <https://fetch.spec.whatwg.org/#local-urls-only-flag>
|
||||||
pub local_urls_only: bool,
|
pub local_urls_only: bool,
|
||||||
/// <https://fetch.spec.whatwg.org/#sandboxed-storage-area-urls-flag>
|
|
||||||
pub sandboxed_storage_area_urls: bool,
|
|
||||||
/// <https://fetch.spec.whatwg.org/#concept-request-header-list>
|
/// <https://fetch.spec.whatwg.org/#concept-request-header-list>
|
||||||
#[ignore_malloc_size_of = "Defined in hyper"]
|
#[ignore_malloc_size_of = "Defined in hyper"]
|
||||||
pub headers: HeaderMap,
|
pub headers: HeaderMap,
|
||||||
|
@ -553,7 +551,6 @@ impl Request {
|
||||||
id,
|
id,
|
||||||
method: Method::GET,
|
method: Method::GET,
|
||||||
local_urls_only: false,
|
local_urls_only: false,
|
||||||
sandboxed_storage_area_urls: false,
|
|
||||||
headers: HeaderMap::new(),
|
headers: HeaderMap::new(),
|
||||||
unsafe_request: false,
|
unsafe_request: false,
|
||||||
body: None,
|
body: None,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue