| Index: content/public/browser/speech_recognition_session_config.cc
|
| diff --git a/content/public/browser/speech_recognition_session_config.cc b/content/public/browser/speech_recognition_session_config.cc
|
| index 8a21f331818d96ed66b00e2dbe8b91ec8030516d..7c40cc36726824d5327a4c8881f8b2efc6207ab7 100644
|
| --- a/content/public/browser/speech_recognition_session_config.cc
|
| +++ b/content/public/browser/speech_recognition_session_config.cc
|
| @@ -4,11 +4,16 @@
|
|
|
| #include "content/public/browser/speech_recognition_session_config.h"
|
|
|
| +namespace {
|
| +const uint32 kDefaultMaxHypotheses = 1;
|
| +}
|
| +
|
| namespace content {
|
|
|
| SpeechRecognitionSessionConfig::SpeechRecognitionSessionConfig()
|
| : is_one_shot(true),
|
| filter_profanities(false),
|
| + max_hypotheses(kDefaultMaxHypotheses),
|
| event_listener(NULL) {
|
| }
|
|
|
|
|