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

Side by Side Diff: media/audio/cras/audio_manager_cras.h

Issue 1362093002: Re-land: Add localized default audio device names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Exclude media_resource_provider on iOS. Created 5 years, 2 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_output_controller_unittest.cc ('k') | media/audio/cras/audio_manager_cras.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_CRAS_AUDIO_MANAGER_CRAS_H_ 5 #ifndef MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_
6 #define MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_ 6 #define MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_
7 7
8 #include <cras_types.h> 8 #include <cras_types.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 private: 54 private:
55 // Called by MakeLinearOutputStream and MakeLowLatencyOutputStream. 55 // Called by MakeLinearOutputStream and MakeLowLatencyOutputStream.
56 AudioOutputStream* MakeOutputStream(const AudioParameters& params); 56 AudioOutputStream* MakeOutputStream(const AudioParameters& params);
57 57
58 // Called by MakeLinearInputStream and MakeLowLatencyInputStream. 58 // Called by MakeLinearInputStream and MakeLowLatencyInputStream.
59 AudioInputStream* MakeInputStream(const AudioParameters& params, 59 AudioInputStream* MakeInputStream(const AudioParameters& params,
60 const std::string& device_id); 60 const std::string& device_id);
61 61
62 bool has_keyboard_mic_; 62 bool has_keyboard_mic_;
63 63
64 // Holds the name and ID of the virtual beamforming devices.
65 const AudioDeviceName beamforming_on_device_name_;
66 const AudioDeviceName beamforming_off_device_name_;
67
68 // Stores the mic positions field from the device. 64 // Stores the mic positions field from the device.
69 std::vector<Point> mic_positions_; 65 std::vector<Point> mic_positions_;
70 66
71 DISALLOW_COPY_AND_ASSIGN(AudioManagerCras); 67 DISALLOW_COPY_AND_ASSIGN(AudioManagerCras);
72 }; 68 };
73 69
74 } // namespace media 70 } // namespace media
75 71
76 #endif // MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_ 72 #endif // MEDIA_AUDIO_CRAS_AUDIO_MANAGER_CRAS_H_
OLDNEW
« no previous file with comments | « media/audio/audio_output_controller_unittest.cc ('k') | media/audio/cras/audio_manager_cras.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698