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 // Put Mojo definitions into their own namespace to avoid collisions with C++
7 // TODO(amistry): Resolve the conflict between these two sets of definitions.
10 import "host_resolver_service.mojom";
12 // Mirror of net::ProxyServer::Scheme.
23 // Mirror of net::ProxyServer.
27 // |host| and |port| are only valid if |scheme| is not INVALID or DIRECT.
32 interface ProxyResolver {
33 // Use a ProxyResolverRequestClient instead of returning a result so we can
34 // cancel in-flight requests by destroying the client.
35 // TODO(amistry): Add BoundNetLog.
36 GetProxyForUrl(string url, ProxyResolverRequestClient client);
39 interface ProxyResolverRequestClient {
40 ReportResult(int32 error, array<ProxyServer>? proxy_servers);
43 interface ProxyResolverErrorObserver {
44 OnPacScriptError(int32 line_number, string error);
47 interface ProxyResolverFactory {
48 // TODO(amistry): Add NetLog.
49 CreateResolver(string pac_script,
50 ProxyResolver& resolver,
51 HostResolver host_resolver,
52 ProxyResolverErrorObserver? error_observer,
53 ProxyResolverFactoryRequestClient client);
56 interface ProxyResolverFactoryRequestClient {
57 ReportResult(int32 error);