blob: 7e4c2b6b5589a447f11e71874f4f1db5354d8f83 [file] [log] [blame]
// 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);
};