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

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

Issue 1034833002: Adding a serviceURI param to SpeechRecognition (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 19 matching lines...) Expand all
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 class MediaStreamTrack;
37 37
38 class SpeechRecognitionClient { 38 class SpeechRecognitionClient {
39 public: 39 public:
40 virtual void start(SpeechRecognition*, const SpeechGrammarList*, const Strin g& lang, bool continuous, bool interimResults, unsigned long maxAlternatives, Me diaStreamTrack* audioTrack) = 0; 40 virtual void start(SpeechRecognition*, const SpeechGrammarList*, const String& lang, const String& serviceURI, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack* audioTrack) = 0;
sof 2015/04/23 18:52:45 indentation is 4 spaces.
kirtia 2015/04/24 20:44:38 Done.
41 virtual void stop(SpeechRecognition*) = 0; 41 virtual void stop(SpeechRecognition*) = 0;
42 virtual void abort(SpeechRecognition*) = 0; 42 virtual void abort(SpeechRecognition*) = 0;
43 43
44 virtual ~SpeechRecognitionClient() { } 44 virtual ~SpeechRecognitionClient() { }
45 }; 45 };
46 46
47 void provideSpeechRecognitionTo(Page&, PassOwnPtr<SpeechRecognitionClient>); 47 void provideSpeechRecognitionTo(Page&, PassOwnPtr<SpeechRecognitionClient>);
48 48
49 } // namespace blink 49 } // namespace blink
50 50
51 #endif // SpeechRecognitionClient_h 51 #endif // SpeechRecognitionClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698