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

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: Fix compile. Created 4 years, 11 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
« no previous file with comments | « content/common/media/aec_dump_messages.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
+};
« no previous file with comments | « content/common/media/aec_dump_messages.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698