Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Unified Diff: content/public/common/speech_recognition_error.h

Issue 10233010: Introducing new data types and IPC messages for scripted JS speech recognition APIs (Speech CL2.0) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed according to Hans review. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/common/speech_recognition_error.h
diff --git a/content/public/common/speech_recognition_error.h b/content/public/common/speech_recognition_error.h
index 10af480d9abf18c661655175c1bb2c71ebb71e95..e00a84e77dc1e6b27fd8120221d237f1b07d8de1 100644
--- a/content/public/common/speech_recognition_error.h
+++ b/content/public/common/speech_recognition_error.h
@@ -4,6 +4,7 @@
#ifndef CONTENT_PUBLIC_COMMON_SPEECH_RECOGNITION_ERROR_H_
#define CONTENT_PUBLIC_COMMON_SPEECH_RECOGNITION_ERROR_H_
+#pragma once
namespace content {
@@ -37,13 +38,19 @@ struct CONTENT_EXPORT SpeechRecognitionError {
SpeechRecognitionErrorCode code;
SpeechAudioErrorDetails details;
- SpeechRecognitionError(SpeechRecognitionErrorCode code_value)
+ SpeechRecognitionError()
Satish 2012/04/27 10:04:41 style guide forbids inlining constructors in heade
hans 2012/04/27 10:53:30 I think in practice it's fine to avoid the extra .
Satish 2012/04/27 11:08:02 Thats what I thought earlier, but the style guide
jam 2012/04/27 14:43:26 For files in content/public we have tried to avoid
Satish 2012/04/27 14:45:34 Cool, makes sense. Is it ok to mention this in the
+ : code(SPEECH_RECOGNITION_ERROR_NONE),
+ details(SPEECH_AUDIO_ERROR_DETAILS_NONE) {
+ }
+ explicit SpeechRecognitionError(SpeechRecognitionErrorCode code_value)
: code(code_value),
- details(SPEECH_AUDIO_ERROR_DETAILS_NONE) {}
+ details(SPEECH_AUDIO_ERROR_DETAILS_NONE) {
+ }
SpeechRecognitionError(SpeechRecognitionErrorCode code_value,
SpeechAudioErrorDetails details_value)
: code(code_value),
- details(details_value) {}
+ details(details_value) {
+ }
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698