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

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

Issue 10918279: Provide mutable members of UrlRequestContext via pure-virtual interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODO Created 8 years, 2 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/google_one_shot_remote_engine.cc
diff --git a/content/browser/speech/google_one_shot_remote_engine.cc b/content/browser/speech/google_one_shot_remote_engine.cc
index 8180844446d65471ecb6a20307273d8f332f9fd7..aa66e3e49a0521b2eaa9fc1f5a6c2a9307aa23e3 100644
--- a/content/browser/speech/google_one_shot_remote_engine.cc
+++ b/content/browser/speech/google_one_shot_remote_engine.cc
@@ -177,7 +177,10 @@ void GoogleOneShotRemoteEngine::StartRecognition() {
net::URLRequestContext* request_context =
url_context_->GetURLRequestContext();
DCHECK(request_context);
- std::string accepted_language_list = request_context->accept_language();
+ // TODO(pauljensen): GoogleOneShotRemoteEngine should be constructed with
+ // a reference to the HttpUserAgentSettings rather than accessing the
+ // accept language through the URLRequestContext.
+ std::string accepted_language_list = request_context->GetAcceptLanguage();
size_t separator = accepted_language_list.find_first_of(",;");
lang_param = accepted_language_list.substr(0, separator);
}

Powered by Google App Engine
This is Rietveld 408576698