// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/http/proxy_fallback.h" #include "net/base/net_errors.h" #include "net/base/proxy_chain.h" #include "net/base/proxy_server.h" namespace net { NET_EXPORT bool CanFalloverToNextProxy(const ProxyChain& proxy_chain, int error, int* final_error, bool is_for_ip_protection) { … } } // namespace net