/* * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. * Copyright (C) 2006 Samuel Weinig <[email protected]> * Copyright (C) 2009, 2012 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_RESOURCE_REQUEST_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_RESOURCE_REQUEST_H_ #include <memory> #include <optional> #include "base/containers/flat_set.h" #include "base/time/time.h" #include "base/unguessable_token.h" #include "net/cookies/site_for_cookies.h" #include "net/filter/source_stream.h" #include "net/storage_access_api/status.h" #include "services/metrics/public/cpp/ukm_source_id.h" #include "services/network/public/mojom/attribution.mojom-blink.h" #include "services/network/public/mojom/chunked_data_pipe_getter.mojom-blink-forward.h" #include "services/network/public/mojom/cors.mojom-blink-forward.h" #include "services/network/public/mojom/fetch_api.mojom-blink.h" #include "services/network/public/mojom/ip_address_space.mojom-blink-forward.h" #include "services/network/public/mojom/trust_tokens.mojom-blink.h" #include "services/network/public/mojom/web_bundle_handle.mojom-blink.h" #include "third_party/blink/public/mojom/fetch/fetch_api_request.mojom-blink-forward.h" #include "third_party/blink/public/mojom/permissions_policy/permissions_policy_feature.mojom-blink-forward.h" #include "third_party/blink/public/platform/resource_request_blocked_reason.h" #include "third_party/blink/public/platform/web_url_request_extra_data.h" #include "third_party/blink/renderer/platform/loader/fetch/render_blocking_behavior.h" #include "third_party/blink/renderer/platform/loader/fetch/resource_load_priority.h" #include "third_party/blink/renderer/platform/network/http_header_map.h" #include "third_party/blink/renderer/platform/network/http_names.h" #include "third_party/blink/renderer/platform/network/http_parsers.h" #include "third_party/blink/renderer/platform/weborigin/kurl.h" #include "third_party/blink/renderer/platform/weborigin/security_origin.h" #include "third_party/blink/renderer/platform/wtf/ref_counted.h" namespace blink { class EncodedFormData; class PermissionsPolicy; // ResourceRequestHead represents request without request body. // See ResourceRequest below to see what request is. // ResourceRequestHead is implicitly copyable while ResourceRequest is not. // TODO(yoichio) : Migrate existing ResourceRequest occurrence not using request // body to ResourceRequestHead. class PLATFORM_EXPORT ResourceRequestHead { … }; class PLATFORM_EXPORT ResourceRequestBody { … }; // A ResourceRequest is a "request" object for ResourceLoader. Conceptually // it is https://fetch.spec.whatwg.org/#concept-request, but it contains // a lot of blink specific fields. WebURLRequest is the "public version" // of this class and URLLoader needs it. See WebURLRequest and // WrappedResourceRequest. // // This class is thread-bound. Do not copy/pass an instance across threads. // // Although request consists head and body, ResourceRequest is implemented by // inheriting ResourceRequestHead in order to make it possible to use // property accessors through both ResourceRequestHead and ResourceRequest while // avoiding duplicate accessor definitions. // For those who want to add a new property in request, please implement its // member and accessors in ResourceRequestHead instead of ResourceRequest. class PLATFORM_EXPORT ResourceRequest final : public ResourceRequestHead { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_LOADER_FETCH_RESOURCE_REQUEST_H_