Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: net/proxy/mojo_proxy_resolver_factory.h

Issue 917863005: Implementation of ProxyResolver that uses a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sam-v8-pac-utility-proxy
Patch Set: Fix build. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/net.gypi ('k') | net/proxy/mojo_proxy_type_converters.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #ifndef NET_PROXY_MOJO_PROXY_RESOLVER_FACTORY_H_
6 #define NET_PROXY_MOJO_PROXY_RESOLVER_FACTORY_H_
7
8 #include "net/interfaces/host_resolver_service.mojom.h"
9 #include "net/interfaces/proxy_resolver_service.mojom.h"
10 #include "third_party/mojo/src/mojo/public/cpp/bindings/interface_request.h"
11
12 namespace net {
13
14 // Factory for connecting to Mojo ProxyResolver services.
15 class MojoProxyResolverFactory {
16 public:
17 // Connect to a new ProxyResolver service using request |req|, using
18 // |host_resolver| as the DNS resolver.
19 // Note: The connection request |req| may be resolved asynchronously.
20 virtual void Create(mojo::InterfaceRequest<interfaces::ProxyResolver> req,
21 interfaces::HostResolverPtr host_resolver) = 0;
22 };
23
24 } // namespace net
25
26 #endif // NET_PROXY_MOJO_PROXY_RESOLVER_FACTORY_H_
OLDNEW
« no previous file with comments | « net/net.gypi ('k') | net/proxy/mojo_proxy_type_converters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698