| Index: chrome/browser/speech/speech_input_extension_apitest.cc
|
| diff --git a/chrome/browser/speech/speech_input_extension_apitest.cc b/chrome/browser/speech/speech_input_extension_apitest.cc
|
| index 3718a038487dc1b40ad39c3d1dc09c48cfa2d2a5..59b99589e2e5d1404e017ec502d8987fdf86e06e 100644
|
| --- a/chrome/browser/speech/speech_input_extension_apitest.cc
|
| +++ b/chrome/browser/speech/speech_input_extension_apitest.cc
|
| @@ -81,11 +81,11 @@ class SpeechInputExtensionApiTest : public ExtensionApiTest,
|
| virtual void StartRecording(
|
| content::SpeechRecognitionEventListener* listener,
|
| net::URLRequestContextGetter* context_getter,
|
| - const string16& extension_name,
|
| + const std::string& extension_name,
|
| const std::string& language,
|
| const std::string& grammar,
|
| bool filter_profanities,
|
| - bool show_notification) OVERRIDE;
|
| + int render_process_id) OVERRIDE;
|
|
|
| virtual void StopRecording(bool recognition_failed) OVERRIDE;
|
|
|
| @@ -136,11 +136,11 @@ SpeechInputExtensionApiTest::~SpeechInputExtensionApiTest() {
|
| void SpeechInputExtensionApiTest::StartRecording(
|
| content::SpeechRecognitionEventListener* listener,
|
| net::URLRequestContextGetter* context_getter,
|
| - const string16& extension_name,
|
| + const std::string& extension_name,
|
| const std::string& language,
|
| const std::string& grammar,
|
| bool filter_profanities,
|
| - bool show_notification) {
|
| + int render_process_id) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| recognizer_is_valid_ = true;
|
|
|
|
|