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

Unified Diff: content/public/common/speech_recognition_result.h

Issue 102593002: Convert string16 to base::string16 in content. (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/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) {
« no previous file with comments | « content/public/common/show_desktop_notification_params.h ('k') | content/public/plugin/content_plugin_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698