blob: 6062fbed8e709f506eaeaf1d519d6c76b481e5a9 [file] [log] [blame]
// Copyright (c) 2006-2008 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_PROXY_RESOLVER_WINHTTP_H_
#define NET_PROXY_PROXY_RESOLVER_WINHTTP_H_
#include <string>
#include "googleurl/src/gurl.h"
#include "net/proxy/proxy_resolver.h"
typedef void* HINTERNET; // From winhttp.h
namespace net {
// An implementation of ProxyResolver that uses WinHTTP and the system
// proxy settings.
class ProxyResolverWinHttp : public ProxyResolver {
public:
ProxyResolverWinHttp();
virtual ~ProxyResolverWinHttp();
// ProxyResolver implementation:
virtual int GetProxyForURL(const GURL& url,
ProxyInfo* results,
CompletionCallback* /*callback*/,
RequestHandle* /*request*/,
const BoundNetLog& /*net_log*/);
virtual void CancelRequest(RequestHandle request);
private:
// ProxyResolver implementation:
virtual int SetPacScript(const GURL& pac_url,
const std::string& /*pac_bytes*/,
CompletionCallback* /*callback*/);
bool OpenWinHttpSession();
void CloseWinHttpSession();
// Proxy configuration is cached on the session handle.
HINTERNET session_handle_;
GURL pac_url_;
DISALLOW_COPY_AND_ASSIGN(ProxyResolverWinHttp);
};
} // namespace net
#endif // NET_PROXY_PROXY_RESOLVER_WINHTTP_H_