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

Side by Side Diff: media/audio/audio_system_impl.h

Issue 2763383002: Switching AudioInputDeviceManager from using AudioManager interface to AudioSystem one. (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 unified diff | Download patch
« no previous file with comments | « media/audio/audio_system.h ('k') | media/audio/audio_system_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_AUDIO_AUDIO_SYSTEM_IMPL_H_ 5 #ifndef MEDIA_AUDIO_AUDIO_SYSTEM_IMPL_H_
6 #define MEDIA_AUDIO_AUDIO_SYSTEM_IMPL_H_ 6 #define MEDIA_AUDIO_AUDIO_SYSTEM_IMPL_H_
7 7
8 #include "media/audio/audio_system.h" 8 #include "media/audio/audio_system.h"
9 9
10 namespace base { 10 namespace base {
(...skipping 18 matching lines...) Expand all
29 const std::string& device_id, 29 const std::string& device_id,
30 OnAudioParamsCallback on_params_cb) const override; 30 OnAudioParamsCallback on_params_cb) const override;
31 31
32 void HasInputDevices(OnBoolCallback on_has_devices_cb) const override; 32 void HasInputDevices(OnBoolCallback on_has_devices_cb) const override;
33 33
34 void HasOutputDevices(OnBoolCallback on_has_devices_cb) const override; 34 void HasOutputDevices(OnBoolCallback on_has_devices_cb) const override;
35 35
36 void GetDeviceDescriptions(OnDeviceDescriptionsCallback on_descriptions_cp, 36 void GetDeviceDescriptions(OnDeviceDescriptionsCallback on_descriptions_cp,
37 bool for_input) override; 37 bool for_input) override;
38 38
39 void GetAssociatedOutputDeviceID(const std::string& input_device_id,
40 OnDeviceIdCallback on_device_id_cb) override;
41
42 void GetInputDeviceInfo(
43 const std::string& input_device_id,
44 OnInputDeviceInfoCallback on_input_device_info_cb) override;
45
39 base::SingleThreadTaskRunner* GetTaskRunner() const override; 46 base::SingleThreadTaskRunner* GetTaskRunner() const override;
40 47
41 AudioManager* GetAudioManager() const override;
42
43 protected: 48 protected:
44 AudioSystemImpl(AudioManager* audio_manager); 49 AudioSystemImpl(AudioManager* audio_manager);
45 50
46 private: 51 private:
47 AudioManager* const audio_manager_; 52 AudioManager* const audio_manager_;
48 53
49 DISALLOW_COPY_AND_ASSIGN(AudioSystemImpl); 54 DISALLOW_COPY_AND_ASSIGN(AudioSystemImpl);
50 }; 55 };
51 56
52 } // namespace media 57 } // namespace media
53 58
54 #endif // MEDIA_AUDIO_AUDIO_SYSTEM_IMPL_H_ 59 #endif // MEDIA_AUDIO_AUDIO_SYSTEM_IMPL_H_
OLDNEW
« no previous file with comments | « media/audio/audio_system.h ('k') | media/audio/audio_system_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698