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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7128fe0987933a052dae87e307ba7005ff9ac6a0 |
--- /dev/null |
+++ b/content/public/browser/speech_recognition_session_config.cc |
@@ -0,0 +1,17 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/public/browser/speech_recognition_session_config.h" |
+ |
+namespace content { |
+ |
+SpeechRecognitionSessionConfig::SpeechRecognitionSessionConfig() |
+ : filter_profanities(NULL), |
Satish
2012/04/19 13:03:19
remove extra space after colon
Satish
2012/04/19 13:03:19
NULL -> false
Primiano Tucci (use gerrit)
2012/04/20 16:06:43
Done.
Primiano Tucci (use gerrit)
2012/04/20 16:06:43
Done.
|
+ url_context_getter(NULL) { |
+} |
+ |
+SpeechRecognitionSessionConfig::~SpeechRecognitionSessionConfig() { |
Satish
2012/04/19 13:03:19
it this empty destructor required and if not could
Primiano Tucci (use gerrit)
2012/04/20 16:06:43
Yes, otherwise
[chromium-style] Complex class/str
|
+} |
+ |
+} // namespace content |