naiveproxy/services/audio/public/mojom/log_factory_manager.mojom

17 lines
581 B
Plaintext
Raw Normal View History

2018-12-10 05:59:24 +03:00
// Copyright 2018 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 audio.mojom;
import "media/mojo/interfaces/audio_logging.mojom";
// This interface is exposed by the audio service to allow trusted clients
// (like the browser process) to set a factory for creating audio logs.
interface LogFactoryManager {
// Sets the factory for creating audio logs. If a previous factory exists,
// the request is ignored.
SetLogFactory(media.mojom.AudioLogFactory factory);
};