blob: 2f32efbabaafadf8e7932e76949e9c55f6b4ecac [file] [log] [blame]
// Copyright 2019 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 NET_PROXY_RESOLUTION_PROXY_HOST_RESOLVER_H_
#define NET_PROXY_RESOLUTION_PROXY_HOST_RESOLVER_H_
#include <memory>
#include <string>
#include <vector>
#include "net/base/completion_once_callback.h"
#include "net/base/ip_address.h"
#include "net/proxy_resolution/proxy_resolver_v8.h"
namespace net {
// Interface for a limited (compared to the standard HostResolver) host resolver
// used just for proxy resolution.
class NET_EXPORT ProxyHostResolver {
public:
virtual ~ProxyHostResolver() {}
class Request {
public:
virtual ~Request() {}
virtual int Start(CompletionOnceCallback callback) = 0;
virtual const std::vector<IPAddress>& GetResults() const = 0;
};
virtual std::unique_ptr<Request> CreateRequest(
const std::string& hostname,
ProxyResolverV8::JSBindings::ResolveDnsOperation operation) = 0;
};
} // namespace net
#endif // NET_PROXY_RESOLUTION_PROXY_HOST_RESOLVER_H_