mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-03 18:56:09 +03:00
23 lines
940 B
Plaintext
23 lines
940 B
Plaintext
|
// Copyright 2018 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.
|
||
|
|
||
|
module network.mojom;
|
||
|
|
||
|
import "url/mojom/url.mojom";
|
||
|
import "services/proxy_resolver/public/mojom/proxy_resolver.mojom";
|
||
|
|
||
|
// Interface for getting the result of a proxy lookup from a NetworkContext.
|
||
|
// Not to be confused with ProxyResolverRequestClient, which is the interface
|
||
|
// between the ProxyResolver service, which executes PAC scripts, and the
|
||
|
// NetworkService.
|
||
|
//
|
||
|
// Closing the ProxyLookUpClient pipe before the request is complete will cancel
|
||
|
// the proxy lookup.
|
||
|
interface ProxyLookupClient {
|
||
|
// Called with the results of a proxy lookup when it is complete. Invoked only
|
||
|
// once per proxy lookup. |proxy_info| is null if the lookup failed, or if the
|
||
|
// NetworkContext was destroyed.
|
||
|
OnProxyLookupComplete(proxy_resolver.mojom.ProxyInfo? proxy_info);
|
||
|
};
|