QUIC - wait for disk cache to load server config if the server is among
[chromium-blink-merge.git] / net / proxy / proxy_resolver_winhttp.h
blob843711caca1aae49c7fecb35d3eb05e3f3ce82c4
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_PROXY_PROXY_RESOLVER_WINHTTP_H_
6 #define NET_PROXY_PROXY_RESOLVER_WINHTTP_H_
8 #include "base/compiler_specific.h"
9 #include "net/base/net_export.h"
10 #include "net/proxy/proxy_resolver_factory.h"
11 #include "url/gurl.h"
13 namespace net {
15 // An implementation of ProxyResolverFactory that uses WinHTTP and the system
16 // proxy settings.
17 class NET_EXPORT_PRIVATE ProxyResolverFactoryWinHttp
18 : public ProxyResolverFactory {
19 public:
20 ProxyResolverFactoryWinHttp();
22 int CreateProxyResolver(
23 const scoped_refptr<ProxyResolverScriptData>& pac_script,
24 scoped_ptr<ProxyResolver>* resolver,
25 const CompletionCallback& callback,
26 scoped_ptr<Request>* request) override;
28 private:
29 DISALLOW_COPY_AND_ASSIGN(ProxyResolverFactoryWinHttp);
32 } // namespace net
34 #endif // NET_PROXY_PROXY_RESOLVER_WINHTTP_H_