mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
17 lines
568 B
Plaintext
17 lines
568 B
Plaintext
|
// Copyright 2017 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 content.mojom;
|
||
|
|
||
|
import "services/network/public/mojom/url_loader_factory.mojom";
|
||
|
|
||
|
// Serializes a collection of URLLoaderFactory interfaces.
|
||
|
struct URLLoaderFactoryBundle {
|
||
|
// The default factory to be used when no others apply.
|
||
|
network.mojom.URLLoaderFactory default_factory;
|
||
|
|
||
|
// A mapping from URL scheme to factory interface.
|
||
|
map<string, network.mojom.URLLoaderFactory> factories;
|
||
|
};
|