// 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 NET_BASE_TEST_PROXY_DELEGATE_H_ #define NET_BASE_TEST_PROXY_DELEGATE_H_ #include <optional> #include <string> #include <string_view> #include <vector> #include "base/memory/scoped_refptr.h" #include "net/base/proxy_chain.h" #include "net/base/proxy_delegate.h" #include "net/base/proxy_server.h" class GURL; namespace net { class ProxyInfo; class ProxyResolutionService; class TestProxyDelegate : public ProxyDelegate { … }; } // namespace net #endif // NET_BASE_TEST_PROXY_DELEGATE_H_