OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * * Redistributions in binary form must reproduce the above copyright | 9 * * Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 19 matching lines...) Expand all Loading... |
30 #include "WebSpeechRecognitionHandle.h" | 30 #include "WebSpeechRecognitionHandle.h" |
31 | 31 |
32 namespace blink { | 32 namespace blink { |
33 | 33 |
34 class WebSpeechRecognitionParams; | 34 class WebSpeechRecognitionParams; |
35 class WebSpeechRecognizerClient; | 35 class WebSpeechRecognizerClient; |
36 | 36 |
37 // Interface for speech recognition, to be implemented by the embedder. | 37 // Interface for speech recognition, to be implemented by the embedder. |
38 class WebSpeechRecognizer { | 38 class WebSpeechRecognizer { |
39 public: | 39 public: |
40 // Start speech recognition for the specified handle using the specified param
eters. Notifications on progress, results, and errors will be sent via the clien
t. | 40 // Start speech recognition for the specified handle using the specified |
| 41 // parameters. Notifications on progress, results, and errors will be sent via |
| 42 // the client. |
41 virtual void start(const WebSpeechRecognitionHandle&, | 43 virtual void start(const WebSpeechRecognitionHandle&, |
42 const WebSpeechRecognitionParams&, | 44 const WebSpeechRecognitionParams&, |
43 WebSpeechRecognizerClient*) = 0; | 45 WebSpeechRecognizerClient*) = 0; |
44 | 46 |
45 // Stop speech recognition for the specified handle, returning any results for
the audio recorded so far. Notifications and errors are sent via the client. | 47 // Stop speech recognition for the specified handle, returning any results for |
| 48 // the audio recorded so far. Notifications and errors are sent via the |
| 49 // client. |
46 virtual void stop(const WebSpeechRecognitionHandle&, | 50 virtual void stop(const WebSpeechRecognitionHandle&, |
47 WebSpeechRecognizerClient*) = 0; | 51 WebSpeechRecognizerClient*) = 0; |
48 | 52 |
49 // Abort speech recognition for the specified handle, discarding any recorded
audio. Notifications and errors are sent via the client. | 53 // Abort speech recognition for the specified handle, discarding any recorded |
| 54 // audio. Notifications and errors are sent via the client. |
50 virtual void abort(const WebSpeechRecognitionHandle&, | 55 virtual void abort(const WebSpeechRecognitionHandle&, |
51 WebSpeechRecognizerClient*) = 0; | 56 WebSpeechRecognizerClient*) = 0; |
52 | 57 |
53 protected: | 58 protected: |
54 virtual ~WebSpeechRecognizer() {} | 59 virtual ~WebSpeechRecognizer() {} |
55 }; | 60 }; |
56 | 61 |
57 } // namespace blink | 62 } // namespace blink |
58 | 63 |
59 #endif // WebSpeechRecognizer_h | 64 #endif // WebSpeechRecognizer_h |
OLD | NEW |