naiveproxy/content/common/url_loader_factory_bundle.mojom

17 lines
532 B
Plaintext
Raw Normal View History

2018-02-02 13:49:39 +03:00
// 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 "content/public/common/url_loader_factory.mojom";
// Serializes a collection of URLLoaderFactory interfaces.
struct URLLoaderFactoryBundle {
// The default factory to be used when no others apply.
URLLoaderFactory default_factory;
// A mapping from URL scheme to factory interface.
map<string, URLLoaderFactory> factories;
};