| Index: content/browser/speech/google_streaming_remote_engine.cc
|
| diff --git a/content/browser/speech/google_streaming_remote_engine.cc b/content/browser/speech/google_streaming_remote_engine.cc
|
| index 81e6cb95d0fac21cb01f7daf04a67d26c8e99ea1..f5dd8f7b5092b6cfb394684b0f8874b52f78d9d2 100644
|
| --- a/content/browser/speech/google_streaming_remote_engine.cc
|
| +++ b/content/browser/speech/google_streaming_remote_engine.cc
|
| @@ -560,7 +560,7 @@ std::string GoogleStreamingRemoteEngine::GetAcceptedLanguages() const {
|
| net::URLRequestContext* request_context =
|
| url_context_->GetURLRequestContext();
|
| DCHECK(request_context);
|
| - std::string accepted_language_list = request_context->accept_language();
|
| + std::string accepted_language_list = request_context->GetAcceptLanguage();
|
| size_t separator = accepted_language_list.find_first_of(",;");
|
| if (separator != std::string::npos)
|
| langs = accepted_language_list.substr(0, separator);
|
|
|