Chromium Code Reviews| 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 15 matching lines...) Expand all Loading... | |
| 26 #ifndef SpeechRecognitionClient_h | 26 #ifndef SpeechRecognitionClient_h |
| 27 #define SpeechRecognitionClient_h | 27 #define SpeechRecognitionClient_h |
| 28 | 28 |
| 29 #include "wtf/text/WTFString.h" | 29 #include "wtf/text/WTFString.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 | 32 |
| 33 class Page; | 33 class Page; |
| 34 class SpeechGrammarList; | 34 class SpeechGrammarList; |
| 35 class SpeechRecognition; | 35 class SpeechRecognition; |
| 36 class MediaStreamTrack; | |
| 36 | 37 |
| 37 class SpeechRecognitionClient { | 38 class SpeechRecognitionClient { |
| 38 public: | 39 public: |
| 40 virtual void setAudioTrack(SpeechRecognition*, MediaStreamTrack*) = 0; | |
| 41 virtual void clearAudioTrack(SpeechRecognition*) = 0; | |
|
no longer working on chromium
2014/08/14 15:41:34
remove
burnik
2014/08/14 16:35:15
Done.
| |
| 39 virtual void start(SpeechRecognition*, const SpeechGrammarList*, const Strin g& lang, bool continuous, bool interimResults, unsigned long maxAlternatives) = 0; | 42 virtual void start(SpeechRecognition*, const SpeechGrammarList*, const Strin g& lang, bool continuous, bool interimResults, unsigned long maxAlternatives) = 0; |
| 40 virtual void stop(SpeechRecognition*) = 0; | 43 virtual void stop(SpeechRecognition*) = 0; |
| 41 virtual void abort(SpeechRecognition*) = 0; | 44 virtual void abort(SpeechRecognition*) = 0; |
| 42 | 45 |
| 43 virtual ~SpeechRecognitionClient() { } | 46 virtual ~SpeechRecognitionClient() { } |
| 44 }; | 47 }; |
| 45 | 48 |
| 46 void provideSpeechRecognitionTo(Page&, PassOwnPtr<SpeechRecognitionClient>); | 49 void provideSpeechRecognitionTo(Page&, PassOwnPtr<SpeechRecognitionClient>); |
| 47 | 50 |
| 48 } // namespace blink | 51 } // namespace blink |
| 49 | 52 |
| 50 #endif // SpeechRecognitionClient_h | 53 #endif // SpeechRecognitionClient_h |
| OLD | NEW |