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

Unified Diff: media/audio/audio_manager.h

Issue 69953026: Log actual streams, not output controllers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Mac. Created 7 years, 1 month 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/browser/renderer_host/media/audio_renderer_host.cc ('k') | media/audio/audio_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_manager.h
diff --git a/media/audio/audio_manager.h b/media/audio/audio_manager.h
index ab9c82b0b28f552902cac9dd71ddd57581d743b0..88b7dd0544061ac06efdbe6a1e369a12bc7e60c7 100644
--- a/media/audio/audio_manager.h
+++ b/media/audio/audio_manager.h
@@ -18,6 +18,10 @@ class MessageLoop;
class MessageLoopProxy;
}
+namespace content {
+class MediaInternals;
+}
+
namespace media {
class AudioInputStream;
@@ -39,6 +43,9 @@ class MEDIA_EXPORT AudioManager {
// like src/chrome.
static AudioManager* Get();
+ void SetMediaInternals(content::MediaInternals* media_internals);
+ content::MediaInternals* GetMediaInternals();
+
// Returns true if the OS reports existence of audio devices. This does not
// guarantee that the existing devices support all formats and sample rates.
virtual bool HasAudioOutputDevices() = 0;
@@ -179,6 +186,7 @@ class MEDIA_EXPORT AudioManager {
AudioManager();
private:
+ content::MediaInternals* media_internals_;
DISALLOW_COPY_AND_ASSIGN(AudioManager);
};
« no previous file with comments | « content/browser/renderer_host/media/audio_renderer_host.cc ('k') | media/audio/audio_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698