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

Unified Diff: chromeos/audio/audio_device.h

Issue 2222903002: audio_device: Add lineout node type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | chromeos/audio/audio_device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/audio/audio_device.h
diff --git a/chromeos/audio/audio_device.h b/chromeos/audio/audio_device.h
index 724798c0d9e6d0295a4f86bda0299672d939a257..5ee28b96c019829882abc9e0c442cfa8812e734f 100644
--- a/chromeos/audio/audio_device.h
+++ b/chromeos/audio/audio_device.h
@@ -27,6 +27,7 @@ enum AudioDeviceType {
AUDIO_TYPE_INTERNAL_MIC,
AUDIO_TYPE_KEYBOARD_MIC,
AUDIO_TYPE_HOTWORD,
+ AUDIO_TYPE_LINEOUT,
AUDIO_TYPE_POST_MIX_LOOPBACK,
AUDIO_TYPE_POST_DSP_LOOPBACK,
AUDIO_TYPE_OTHER,
@@ -54,7 +55,8 @@ struct CHROMEOS_EXPORT AudioDevice {
type == AUDIO_TYPE_USB ||
type == AUDIO_TYPE_BLUETOOTH ||
type == AUDIO_TYPE_HDMI ||
- type == AUDIO_TYPE_INTERNAL_SPEAKER);
+ type == AUDIO_TYPE_INTERNAL_SPEAKER ||
+ type == AUDIO_TYPE_LINEOUT);
}
bool is_input;
« no previous file with comments | « no previous file | chromeos/audio/audio_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698