// 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. #ifndef CONTENT_TEST_FAKE_NETWORK_URL_LOADER_FACTORY_H_ #define CONTENT_TEST_FAKE_NETWORK_URL_LOADER_FACTORY_H_ #include "content/test/fake_network.h" #include "mojo/public/cpp/bindings/pending_receiver.h" #include "mojo/public/cpp/bindings/pending_remote.h" #include "mojo/public/cpp/bindings/receiver_set.h" #include "services/network/public/mojom/url_loader_factory.mojom.h" namespace content { // A URLLoaderFactory backed by FakeNetwork, see the documentation there // for its behavior. class FakeNetworkURLLoaderFactory final : public network::mojom::URLLoaderFactory { … }; } // namespace content #endif // CONTENT_TEST_FAKE_NETWORK_URL_LOADER_FACTORY_H_