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

Side by Side Diff: Source/modules/speech/SpeechRecognitionClient.h

Issue 448163003: Support for providing media stream audio track to speech recognition (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: @audioTrack, setAudioTrack, clearAudioTrack Created 6 years, 4 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698