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

Unified Diff: content/public/test/fake_speech_recognition_manager.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
« no previous file with comments | « content/public/test/browser_test_utils.cc ('k') | content/public/test/test_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/fake_speech_recognition_manager.cc
diff --git a/content/public/test/fake_speech_recognition_manager.cc b/content/public/test/fake_speech_recognition_manager.cc
index 3d7b5825856068c39a61f6aefdb7df7de81fa70d..7f8e367a4326b73ca06e86c8830cc5ba0bbbe997 100644
--- a/content/public/test/fake_speech_recognition_manager.cc
+++ b/content/public/test/fake_speech_recognition_manager.cc
@@ -147,7 +147,7 @@ void FakeSpeechRecognitionManager::SetFakeRecognitionResult() {
listener_->OnAudioEnd(session_id_);
SpeechRecognitionResult result;
result.hypotheses.push_back(SpeechRecognitionHypothesis(
- ASCIIToUTF16(kTestResult), 1.0));
+ base::ASCIIToUTF16(kTestResult), 1.0));
SpeechRecognitionResults results;
results.push_back(result);
listener_->OnRecognitionResults(session_id_, results);
« no previous file with comments | « content/public/test/browser_test_utils.cc ('k') | content/public/test/test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698