blob: 590b687ee980f85612508d9ad6dde355d92ff43c [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module network.mojom;
import "mojo/public/mojom/base/big_string.mojom";
// Interface to delegate fetching the PAC script URL configured via DHCP to the
// browser process. If an error occurs or no PAC URL is provided, it should
// return an empty string.
[EnableIf=is_chromeos]
interface DhcpWpadUrlClient {
GetPacUrl() => (mojo_base.mojom.BigString url);
};