| Index: content/public/browser/speech_recognition_session_config.h
|
| diff --git a/content/public/browser/speech_recognition_session_config.h b/content/public/browser/speech_recognition_session_config.h
|
| index 1cde6430b0d38985963276f8eacdf8a090f4a873..c4286bd56a8fa2706b86e94748cb2816f35f6b22 100644
|
| --- a/content/public/browser/speech_recognition_session_config.h
|
| +++ b/content/public/browser/speech_recognition_session_config.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONFIG_H_
|
| #define CONTENT_PUBLIC_BROWSER_SPEECH_RECOGNITION_SESSION_CONFIG_H_
|
|
|
| +#include <string>
|
| +
|
| #include "base/basictypes.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -32,6 +34,8 @@ struct CONTENT_EXPORT SpeechRecognitionSessionConfig {
|
| bool continuous;
|
| bool interim_results;
|
| uint32 max_hypotheses;
|
| + std::string auth_token;
|
| + std::string auth_scope;
|
| SpeechRecognitionSessionContext initial_context;
|
| scoped_refptr<net::URLRequestContextGetter> url_request_context_getter;
|
| base::WeakPtr<SpeechRecognitionEventListener> event_listener;
|
|
|