From ab52cdae1fe398388280f6cb563992345ddaed38 Mon Sep 17 00:00:00 2001 From: Shubham Gupta <32428749+shubhamg13@users.noreply.github.com> Date: Tue, 7 Jan 2025 14:31:27 +0800 Subject: [PATCH] Remove obselete request parameter. (#34867) Signed-off-by: Shubham Gupta Co-authored-by: Shubham Gupta --- components/shared/net/request.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/shared/net/request.rs b/components/shared/net/request.rs index 4f298ce9368..4b697af6be9 100644 --- a/components/shared/net/request.rs +++ b/components/shared/net/request.rs @@ -479,8 +479,6 @@ pub struct Request { pub method: Method, /// pub local_urls_only: bool, - /// - pub sandboxed_storage_area_urls: bool, /// #[ignore_malloc_size_of = "Defined in hyper"] pub headers: HeaderMap, @@ -553,7 +551,6 @@ impl Request { id, method: Method::GET, local_urls_only: false, - sandboxed_storage_area_urls: false, headers: HeaderMap::new(), unsafe_request: false, body: None,