// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/renderer/worker/fetch_client_settings_object_helpers.h" #include "third_party/blink/public/platform/web_fetch_client_settings_object.h" namespace content { blink::mojom::FetchClientSettingsObjectPtr FetchClientSettingsObjectFromWebToMojom( const blink::WebFetchClientSettingsObject& web_settings_object) { … } blink::WebFetchClientSettingsObject FetchClientSettingsObjectFromMojomToWeb( const blink::mojom::FetchClientSettingsObjectPtr& mojom_settings_object) { … } } // namespace content