| 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 {
|
|
|