// 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. #ifndef CONTENT_BROWSER_WEBID_TEST_DELEGATED_IDP_NETWORK_REQUEST_MANAGER_H_ #define CONTENT_BROWSER_WEBID_TEST_DELEGATED_IDP_NETWORK_REQUEST_MANAGER_H_ #include "base/memory/raw_ptr.h" #include "content/browser/webid/test/mock_idp_network_request_manager.h" #include "third_party/blink/public/mojom/webid/federated_auth_request.mojom.h" namespace content { // Forwards IdpNetworkRequestManager calls to delegate. The purpose of this // class is to enable querying the delegate after FederatedAuthRequestImpl // destroys the DelegatedIdpNetworkRequestManager. class DelegatedIdpNetworkRequestManager : public MockIdpNetworkRequestManager { … }; } // namespace content #endif // CONTENT_BROWSER_WEBID_TEST_DELEGATED_IDP_NETWORK_REQUEST_MANAGER_H_