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

Unified Diff: content/renderer/media/media_stream_audio_processor_options.cc

Issue 121033002: Update uses of UTF conversions in content/ to use the base:: namespace. (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
Index: content/renderer/media/media_stream_audio_processor_options.cc
diff --git a/content/renderer/media/media_stream_audio_processor_options.cc b/content/renderer/media/media_stream_audio_processor_options.cc
index add7f957c8695b7e120a3501f84c0cf869b11ccb..5aa01599262dc219854a6644dc7bb047f6105604 100644
--- a/content/renderer/media/media_stream_audio_processor_options.cc
+++ b/content/renderer/media/media_stream_audio_processor_options.cc
@@ -80,7 +80,7 @@ void StartAecDump(AudioProcessing* audio_processing) {
base::FilePath file = path.Append(FILE_PATH_LITERAL("audio.aecdump"));
#if defined(OS_WIN)
- const std::string file_name = WideToUTF8(file.value());
+ const std::string file_name = base::WideToUTF8(file.value());
#else
const std::string file_name = file.value();
#endif
« no previous file with comments | « content/renderer/input_tag_speech_dispatcher.cc ('k') | content/renderer/media/media_stream_dependency_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698