Index: content/renderer/speech_recognition_dispatcher.cc |
diff --git a/content/renderer/speech_recognition_dispatcher.cc b/content/renderer/speech_recognition_dispatcher.cc |
index 1ac223710175bc2f6f1e550123aa56b819700eb0..3d76c20b90825a495e7da382468866f87e26a8b4 100644 |
--- a/content/renderer/speech_recognition_dispatcher.cc |
+++ b/content/renderer/speech_recognition_dispatcher.cc |
@@ -66,7 +66,7 @@ void SpeechRecognitionDispatcher::start( |
msg_params.grammars.push_back( |
SpeechRecognitionGrammar(grammar.src().spec(), grammar.weight())); |
} |
- msg_params.language = UTF16ToUTF8(params.language()); |
+ msg_params.language = base::UTF16ToUTF8(params.language()); |
msg_params.max_hypotheses = static_cast<uint32>(params.maxAlternatives()); |
msg_params.continuous = params.continuous(); |
msg_params.interim_results = params.interimResults(); |