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

Unified Diff: content/browser/speech/speech_recognition_request.cc

Issue 9568002: Renamed speech input implementation from to speech_recognition_*. The namespace has been renamed fr… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased from master. Created 8 years, 9 months 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/browser/speech/speech_recognition_request.cc
diff --git a/content/browser/speech/speech_recognition_request.cc b/content/browser/speech/speech_recognition_request.cc
index 81761285204ff384fd35e565a347acb4720e9e8d..89dde84d2df999c2bcfd5c9c6e3842b2c66d8210 100644
--- a/content/browser/speech/speech_recognition_request.cc
+++ b/content/browser/speech/speech_recognition_request.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -11,7 +11,7 @@
#include "base/string_util.h"
#include "base/values.h"
#include "content/common/net/url_fetcher_impl.h"
-#include "content/public/common/speech_input_result.h"
+#include "content/public/common/speech_recognition_result.h"
#include "net/base/escape.h"
#include "net/base/load_flags.h"
#include "net/url_request/url_request_context.h"
@@ -32,7 +32,7 @@ const char* const kConfidenceString = "confidence";
const int kMaxResults = 6;
bool ParseServerResponse(const std::string& response_body,
- content::SpeechInputResult* result) {
+ content::SpeechRecognitionResult* result) {
if (response_body.empty()) {
LOG(WARNING) << "ParseServerResponse: Response was empty.";
return false;
@@ -66,9 +66,9 @@ bool ParseServerResponse(const std::string& response_body,
// Process the status.
switch (status) {
- case content::SPEECH_INPUT_ERROR_NONE:
- case content::SPEECH_INPUT_ERROR_NO_SPEECH:
- case content::SPEECH_INPUT_ERROR_NO_MATCH:
+ case content::SPEECH_RECOGNITION_ERROR_NONE:
+ case content::SPEECH_RECOGNITION_ERROR_NO_SPEECH:
+ case content::SPEECH_RECOGNITION_ERROR_NO_MATCH:
break;
default:
@@ -77,7 +77,7 @@ bool ParseServerResponse(const std::string& response_body,
return false;
}
- result->error = static_cast<content::SpeechInputError>(status);
+ result->error = static_cast<content::SpeechRecognitionErrorCode>(status);
// Get the hypotheses.
Value* hypotheses_value = NULL;
@@ -121,7 +121,7 @@ bool ParseServerResponse(const std::string& response_body,
double confidence = 0.0;
hypothesis_value->GetDouble(kConfidenceString, &confidence);
- result->hypotheses.push_back(content::SpeechInputHypothesis(
+ result->hypotheses.push_back(content::SpeechRecognitionHypothesis(
utterance, confidence));
}
@@ -135,7 +135,7 @@ bool ParseServerResponse(const std::string& response_body,
} // namespace
-namespace speech_input {
+namespace speech {
int SpeechRecognitionRequest::url_fetcher_id_for_tests = 0;
@@ -211,12 +211,12 @@ void SpeechRecognitionRequest::OnURLFetchComplete(
const content::URLFetcher* source) {
DCHECK_EQ(url_fetcher_.get(), source);
- content::SpeechInputResult result;
+ content::SpeechRecognitionResult result;
std::string data;
if (!source->GetStatus().is_success() || source->GetResponseCode() != 200 ||
!source->GetResponseAsString(&data) ||
!ParseServerResponse(data, &result)) {
- result.error = content::SPEECH_INPUT_ERROR_NETWORK;
+ result.error = content::SPEECH_RECOGNITION_ERROR_NETWORK;
}
DVLOG(1) << "SpeechRecognitionRequest: Invoking delegate with result.";
@@ -224,4 +224,4 @@ void SpeechRecognitionRequest::OnURLFetchComplete(
delegate_->SetRecognitionResult(result);
}
-} // namespace speech_input
+} // namespace speech
« no previous file with comments | « content/browser/speech/speech_recognition_request.h ('k') | content/browser/speech/speech_recognition_request_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698