| Index: content/common/media/audio_debug_recording.mojom
|
| diff --git a/content/common/media/audio_debug_recording.mojom b/content/common/media/audio_debug_recording.mojom
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..60cb3b98838c0357f216f620a1e7244944a71ec2
|
| --- /dev/null
|
| +++ b/content/common/media/audio_debug_recording.mojom
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2015 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 content;
|
| +
|
| +// Interface to observe whether to enable or disable audio debug recording.
|
| +interface AudioDebugRecordingObserver {
|
| + Enable(handle aec_dump_file_handle);
|
| + Disable();
|
| +};
|
| +
|
| +interface AudioDebugRecording {
|
| + // Registers an audio debug recording observer. To unregister, delete/unbind
|
| + // the observer.
|
| + RegisterObserver(int32 id, AudioDebugRecordingObserver observer);
|
| +};
|
|
|