naiveproxy/services/audio/public/mojom/log_factory_manager.mojom
2018-12-09 21:59:24 -05:00

17 lines
581 B
Plaintext

// 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);
};