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

Unified Diff: media/audio/audio_system_impl.h

Issue 2799363005: Removing public access to AudioManager device info interface. (Closed)
Patch Set: rebase Created 3 years, 8 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 | « media/audio/audio_output_proxy_unittest.cc ('k') | media/audio/audio_system_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_system_impl.h
diff --git a/media/audio/audio_system_impl.h b/media/audio/audio_system_impl.h
index 10884d08afb270da573f508ed498fb0d12c61dd6..4e799b876735bb3e106ec687ace05c8a6a312e55 100644
--- a/media/audio/audio_system_impl.h
+++ b/media/audio/audio_system_impl.h
@@ -51,6 +51,23 @@ class MEDIA_EXPORT AudioSystemImpl : public AudioSystem {
private:
AudioManager* const audio_manager_;
+ static AudioParameters GetInputParametersOnDeviceThread(
+ AudioManager* audio_manager,
+ const std::string& device_id);
+
+ static AudioParameters GetOutputParametersOnDeviceThread(
+ AudioManager* audio_manager,
+ const std::string& device_id);
+
+ static AudioDeviceDescriptions GetDeviceDescriptionsOnDeviceThread(
+ AudioManager* audio_manager,
+ bool for_input);
+
+ static void GetInputDeviceInfoOnDeviceThread(
+ AudioManager* audio_manager,
+ const std::string& input_device_id,
+ AudioSystem::OnInputDeviceInfoCallback on_input_device_info_cb);
+
DISALLOW_COPY_AND_ASSIGN(AudioSystemImpl);
};
« no previous file with comments | « media/audio/audio_output_proxy_unittest.cc ('k') | media/audio/audio_system_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698