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

Unified Diff: media/midi/midi_manager_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/device_enumeration_win.cc ('k') | net/base/escape.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/midi/midi_manager_win.cc
diff --git a/media/midi/midi_manager_win.cc b/media/midi/midi_manager_win.cc
index dabbf252d8cfd755f2d0819363dfa431fa95c309..460dcfee343c7a869a2d5ecaa9278b5623532525 100644
--- a/media/midi/midi_manager_win.cc
+++ b/media/midi/midi_manager_win.cc
@@ -39,7 +39,7 @@ std::string GetInErrorMessage(MMRESULT result) {
<< " midiInGetErrorText error: " << get_result;
return std::string();
}
- return WideToUTF8(text);
+ return base::WideToUTF8(text);
}
std::string GetOutErrorMessage(MMRESULT result) {
@@ -51,7 +51,7 @@ std::string GetOutErrorMessage(MMRESULT result) {
<< " midiOutGetErrorText error: " << get_result;
return std::string();
}
- return WideToUTF8(text);
+ return base::WideToUTF8(text);
}
class MIDIHDRDeleter {
« no previous file with comments | « media/audio/win/device_enumeration_win.cc ('k') | net/base/escape.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698