blob: e6e23433fc9a68303c4676645e3df819234100b7 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_NETWORK_PROXY_SERVICE_MOJO_H_
#define CONTENT_NETWORK_PROXY_SERVICE_MOJO_H_
#include <memory>
#include "content/common/content_export.h"
#include "net/proxy_resolution/dhcp_pac_file_fetcher.h"
#include "services/proxy_resolver/public/interfaces/proxy_resolver.mojom.h"
namespace net {
class HostResolver;
class NetLog;
class NetworkDelegate;
class ProxyConfigService;
class ProxyScriptFetcher;
class ProxyResolutionService;
} // namespace net
namespace content {
// Creates a proxy service that uses |mojo_proxy_factory| to create and connect
// to a Mojo proxy resolver service. This proxy service polls
// |proxy_config_service| to notice when the proxy settings change.
//
// |proxy_script_fetcher| specifies the dependency to use for downloading
// any PAC scripts.
//
// |dhcp_proxy_script_fetcher| specifies the dependency to use for attempting
// to retrieve the most appropriate PAC script configured in DHCP.
//
// |host_resolver| points to the host resolving dependency the PAC script
// should use for any DNS queries. It must remain valid throughout the
// lifetime of the ProxyResolutionService.
std::unique_ptr<net::ProxyResolutionService> CONTENT_EXPORT
CreateProxyServiceUsingMojoFactory(
proxy_resolver::mojom::ProxyResolverFactoryPtr mojo_proxy_factory,
std::unique_ptr<net::ProxyConfigService> proxy_config_service,
std::unique_ptr<net::ProxyScriptFetcher> proxy_script_fetcher,
std::unique_ptr<net::DhcpProxyScriptFetcher> dhcp_proxy_script_fetcher,
net::HostResolver* host_resolver,
net::NetLog* net_log,
net::NetworkDelegate* network_delegate);
} // namespace content
#endif // CONTENT_NETWORK_PROXY_SERVICE_MOJO_H_