| Index: chrome/browser/speech/speech_recognizer.h
|
| diff --git a/chrome/browser/speech/speech_recognizer.h b/chrome/browser/speech/speech_recognizer.h
|
| index 0473dde39d6a7ac79da49c36c7e624112059252c..61226f473542098e5ef90385014c2e2805723b49 100644
|
| --- a/chrome/browser/speech/speech_recognizer.h
|
| +++ b/chrome/browser/speech/speech_recognizer.h
|
| @@ -73,7 +73,9 @@ class SpeechRecognizer
|
| virtual ~Delegate() {}
|
| };
|
|
|
| - SpeechRecognizer(Delegate* delegate, int caller_id,
|
| + SpeechRecognizer(Delegate* delegate,
|
| + int caller_id,
|
| + const std::string& language,
|
| const std::string& grammar);
|
| ~SpeechRecognizer();
|
|
|
| @@ -118,6 +120,7 @@ class SpeechRecognizer
|
|
|
| Delegate* delegate_;
|
| int caller_id_;
|
| + std::string language_;
|
| std::string grammar_;
|
|
|
| // Buffer holding the recorded audio. Owns the strings inside the list.
|
|
|