Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1649)

Unified Diff: content/common/media/audio_debug_recording.mojom

Issue 1246283003: Split out audio debug recording from RenderProcessHostImpl. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..223e2156c4b5c0bd48e3583a0456532f2902e392
--- /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 file_handle);
Henrik Grunell 2015/10/15 12:17:03 Today we have two different recordings. This speci
Anand Mistry (off Chromium) 2015/10/21 03:58:24 Done.
+ Disable();
+};
+
+interface AudioDebugRecording {
+ // Registers an audio debug recording observer. To unregister, delete/unbind
+ // the observer.
+ RegisterObserver(int32 id, AudioDebugRecordingObserver observer);
+};

Powered by Google App Engine
This is Rietveld 408576698