// Copyright 2016 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_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_ #define CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_ #include <memory> #include <optional> #include "content/browser/loader/navigation_url_loader_delegate.h" #include "net/url_request/redirect_info.h" #include "services/network/public/mojom/url_response_head.mojom-forward.h" namespace base { class RunLoop; } namespace content { // Test implementation of NavigationURLLoaderDelegate to monitor navigation // progress in the network stack. class TestNavigationURLLoaderDelegate : public NavigationURLLoaderDelegate { … }; } // namespace content #endif // CONTENT_TEST_TEST_NAVIGATION_URL_LOADER_DELEGATE_H_