1 // Copyright 2015 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_MOJO_PROXY_RESOLVER_IMPL_H_
6 #define NET_PROXY_MOJO_PROXY_RESOLVER_IMPL_H_
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "net/interfaces/proxy_resolver_service.mojom.h"
15 #include "net/proxy/proxy_resolver.h"
18 class ProxyResolverV8Tracing
;
20 class MojoProxyResolverImpl
: public interfaces::ProxyResolver
{
22 explicit MojoProxyResolverImpl(scoped_ptr
<ProxyResolverV8Tracing
> resolver
);
24 ~MojoProxyResolverImpl() override
;
29 // interfaces::ProxyResolver overrides.
31 const mojo::String
& url
,
32 interfaces::ProxyResolverRequestClientPtr client
) override
;
34 void DeleteJob(Job
* job
);
36 scoped_ptr
<ProxyResolverV8Tracing
> resolver_
;
37 std::set
<Job
*> resolve_jobs_
;
39 DISALLOW_COPY_AND_ASSIGN(MojoProxyResolverImpl
);
44 #endif // NET_PROXY_MOJO_PROXY_RESOLVER_IMPL_H_