| Index: content/browser/speech/speech_input_manager.cc
|
| diff --git a/content/browser/speech/speech_input_manager.cc b/content/browser/speech/speech_input_manager.cc
|
| index d115c89eff05dc9861e3223b998e8f22dd7ac62c..9d32c3450a73f278d23b4338d6b01bbc6a476634 100644
|
| --- a/content/browser/speech/speech_input_manager.cc
|
| +++ b/content/browser/speech/speech_input_manager.cc
|
| @@ -52,7 +52,9 @@ void SpeechInputManager::StartRecognition(
|
| const gfx::Rect& element_rect,
|
| const std::string& language,
|
| const std::string& grammar,
|
| - const std::string& origin_url) {
|
| + const std::string& origin_url,
|
| + net::URLRequestContextGetter* context_getter,
|
| + bool censor_results) {
|
| DCHECK(!HasPendingRequest(caller_id));
|
|
|
| ShowRecognitionRequested(
|
| @@ -62,7 +64,7 @@ void SpeechInputManager::StartRecognition(
|
| SpeechInputRequest* request = &requests_[caller_id];
|
| request->delegate = delegate;
|
| request->recognizer = new SpeechRecognizer(
|
| - this, caller_id, language, grammar, censor_results(),
|
| + this, caller_id, language, grammar, censor_results, context_getter,
|
| request_info_, can_report_metrics_ ? origin_url : "");
|
| request->is_active = false;
|
|
|
|
|