// Copyright 2015 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_PROXY_RESOLUTION_PROXY_RESOLVER_FACTORY_H_ #define NET_PROXY_RESOLUTION_PROXY_RESOLVER_FACTORY_H_ #include <memory> #include <set> #include "base/memory/scoped_refptr.h" #include "net/base/completion_once_callback.h" #include "net/base/net_export.h" #include "net/proxy_resolution/pac_file_data.h" namespace net { class ProxyResolver; // ProxyResolverFactory is an interface for creating ProxyResolver instances. class NET_EXPORT ProxyResolverFactory { … }; } // namespace net #endif // NET_PROXY_RESOLUTION_PROXY_RESOLVER_FACTORY_H_