mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
22 lines
914 B
Plaintext
22 lines
914 B
Plaintext
// Copyright 2016 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 media.mojom;
|
|
|
|
import "media/mojo/interfaces/interface_factory.mojom";
|
|
import "services/service_manager/public/mojom/interface_provider.mojom";
|
|
|
|
// A service to provide media InterfaceFactory, typically to the media pipeline
|
|
// running in the renderer process. The service itself runs in the process
|
|
// specified by the |mojo_media_host| gn build flag. The service is always
|
|
// connected from the browser process.
|
|
interface MediaService {
|
|
// Requests an InterfaceFactory. |host_interfaces| can optionally be used to
|
|
// provide interfaces hosted by the caller to the remote InterfaceFactory
|
|
// implementation.
|
|
CreateInterfaceFactory(
|
|
InterfaceFactory& factory,
|
|
service_manager.mojom.InterfaceProvider? host_interfaces);
|
|
};
|