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

Unified Diff: content/browser/renderer_host/render_message_filter.h

Issue 11880009: Introduce AudioHardwareConfig for renderer side audio device info. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style nits. Created 7 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
Index: content/browser/renderer_host/render_message_filter.h
diff --git a/content/browser/renderer_host/render_message_filter.h b/content/browser/renderer_host/render_message_filter.h
index 3ba8de3c7c4b34a8ce2a45fbc4e96082edf89ef9..d71d5b121b2c10ddb9a96bf1de8fe9dd45009ca8 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -189,10 +189,9 @@ class RenderMessageFilter : public BrowserMessageFilter {
void OnGetCPUUsage(int* cpu_usage);
- void OnGetHardwareBufferSize(uint32* buffer_size);
- void OnGetHardwareInputSampleRate(int* sample_rate);
- void OnGetHardwareSampleRate(int* sample_rate);
- void OnGetHardwareInputChannelLayout(media::ChannelLayout* layout);
+ void OnGetAudioHardwareConfig(int* output_buffer_size,
+ int* output_sample_rate, int* input_sample_rate,
+ media::ChannelLayout* input_channel_layout);
// Used to look up the monitor color profile.
void OnGetMonitorColorProfile(std::vector<char>* profile);
« no previous file with comments | « content/browser/renderer_host/media/audio_renderer_host.cc ('k') | content/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698