mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
17 lines
581 B
Plaintext
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);
|
||
|
};
|