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

Unified Diff: media/audio/win/audio_low_latency_input_win.cc

Issue 112963005: Update uses of UTF conversions in courgette/, device/, extensions/, google_apis/, gpu/, ipc/, media… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/win/audio_device_listener_win_unittest.cc ('k') | media/audio/win/core_audio_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/win/audio_low_latency_input_win.cc
diff --git a/media/audio/win/audio_low_latency_input_win.cc b/media/audio/win/audio_low_latency_input_win.cc
index 82279082134cef135c4c225cb0aed5429ff0b0c5..7fde2322dc991814794b094da32bc744a20b7c94 100644
--- a/media/audio/win/audio_low_latency_input_win.cc
+++ b/media/audio/win/audio_low_latency_input_win.cc
@@ -282,7 +282,7 @@ HRESULT WASAPIAudioInputStream::GetMixFormat(const std::string& device_id,
} else {
// Retrieve a capture endpoint device that is specified by an endpoint
// device-identification string.
- hr = enumerator->GetDevice(UTF8ToUTF16(device_id).c_str(),
+ hr = enumerator->GetDevice(base::UTF8ToUTF16(device_id).c_str(),
endpoint_device.Receive());
}
if (FAILED(hr))
@@ -478,7 +478,7 @@ HRESULT WASAPIAudioInputStream::SetCaptureDevice() {
} else {
// Retrieve a capture endpoint device that is specified by an endpoint
// device-identification string.
- hr = enumerator->GetDevice(UTF8ToUTF16(device_id_).c_str(),
+ hr = enumerator->GetDevice(base::UTF8ToUTF16(device_id_).c_str(),
endpoint_device_.Receive());
}
« no previous file with comments | « media/audio/win/audio_device_listener_win_unittest.cc ('k') | media/audio/win/core_audio_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698