blob: 176a87ac0152c49043b805717df18caa5571e441 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// 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 "net/proxy/proxy_service.h"
typedef LPVOID HINTERNET; // From winhttp.h
namespace net {
// An implementation of ProxyResolver that uses WinHTTP and the system
// proxy settings.
class ProxyResolverWinHttp : public ProxyResolver {
public:
ProxyResolverWinHttp();
~ProxyResolverWinHttp();
// ProxyResolver implementation:
virtual int GetProxyConfig(ProxyConfig* config);
virtual int GetProxyForURL(const std::string& query_url,
const std::string& pac_url,
ProxyInfo* results);
private:
bool OpenWinHttpSession();
void CloseWinHttpSession();
// Proxy configuration is cached on the session handle.
HINTERNET session_handle_;
DISALLOW_COPY_AND_ASSIGN(ProxyResolverWinHttp);
};
} // namespace net
#endif // NET_PROXY_PROXY_RESOLVER_WINHTTP_H_
|