Index: content/public/common/speech_recognition_result.h |
diff --git a/content/public/common/speech_recognition_result.h b/content/public/common/speech_recognition_result.h |
index 78044e5b5e5017160a5dd157d96d09339ccf9854..aa1a02c31e108f4fe34dfccdb4772ca8125268d3 100644 |
--- a/content/public/common/speech_recognition_result.h |
+++ b/content/public/common/speech_recognition_result.h |
@@ -14,12 +14,12 @@ |
namespace content { |
struct SpeechRecognitionHypothesis { |
- string16 utterance; |
+ base::string16 utterance; |
double confidence; |
SpeechRecognitionHypothesis() : confidence(0.0) {} |
- SpeechRecognitionHypothesis(const string16& utterance_value, |
+ SpeechRecognitionHypothesis(const base::string16& utterance_value, |
double confidence_value) |
: utterance(utterance_value), |
confidence(confidence_value) { |