blob: 20a35c79a50087268e5badd0cc995f26aee4ac43 [file] [log] [blame]
// Copyright 2022 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/browser/service_worker/url_loader_client_checker.h"
namespace content {
URLLoaderClientCheckedRemote::URLLoaderClientCheckedRemote(
mojo::PendingRemote<network::mojom::URLLoaderClient> client)
: proxy_(std::move(client)) {}
URLLoaderClientCheckedRemote::Proxy::Proxy(
mojo::PendingRemote<network::mojom::URLLoaderClient> client)
: client_(std::move(client)) {}
URLLoaderClientCheckedRemote::Proxy::~Proxy() = default;
} // namespace content