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

Unified Diff: chromeos/audio/audio_device.cc

Issue 1275783003: Add a virtual beamforming audio device on ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ...and gfx. Created 5 years, 3 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: chromeos/audio/audio_device.cc
diff --git a/chromeos/audio/audio_device.cc b/chromeos/audio/audio_device.cc
index fd6ae45e42d878958b8a746ee7f6c90bcf6cf119..eeb693eb235e1fa6ee527f3d23e87ba743127e08 100644
--- a/chromeos/audio/audio_device.cc
+++ b/chromeos/audio/audio_device.cc
@@ -148,9 +148,9 @@ std::string AudioDevice::ToString() const {
base::StringAppendF(&result,
"active = %s ",
active ? "true" : "false");
- base::StringAppendF(&result,
- "plugged_time= %s ",
+ base::StringAppendF(&result, "plugged_time = %s ",
base::Uint64ToString(plugged_time).c_str());
+ base::StringAppendF(&result, "mic_positions = %s ", mic_positions.c_str());
return result;
}

Powered by Google App Engine
This is Rietveld 408576698