Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / public / web / WebSpeechRecognitionParams.h
blobc21a5bf6aca1a396f7621bb50bb2fd84ab803283
1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #ifndef WebSpeechRecognitionParams_h
27 #define WebSpeechRecognitionParams_h
29 #include "WebSpeechGrammar.h"
30 #include "public/platform/WebMediaStreamTrack.h"
31 #include "public/platform/WebSecurityOrigin.h"
32 #include "public/platform/WebString.h"
33 #include "public/platform/WebVector.h"
35 namespace blink {
37 class WebSpeechGrammar;
39 class WebSpeechRecognitionParams {
40 public:
41 WebSpeechRecognitionParams(const WebVector<WebSpeechGrammar>& grammars, const WebString& language, const WebString& serviceURI, bool continuous, bool interimResults, unsigned long maxAlternatives, const WebMediaStreamTrack& audioTrack, const WebSecurityOrigin& origin)
42 : m_grammars(grammars)
43 , m_language(language)
44 , m_serviceURI(serviceURI)
45 , m_continuous(continuous)
46 , m_interimResults(interimResults)
47 , m_maxAlternatives(maxAlternatives)
48 , m_audioTrack(audioTrack)
49 , m_origin(origin)
53 const WebVector<WebSpeechGrammar>& grammars() const { return m_grammars; }
54 const WebString& language() const { return m_language; }
55 const WebString& serviceURI() const { return m_serviceURI; }
56 bool continuous() const { return m_continuous; }
57 bool interimResults() const { return m_interimResults; }
58 unsigned long maxAlternatives() const { return m_maxAlternatives; }
59 const WebMediaStreamTrack& audioTrack() const { return m_audioTrack; }
60 const WebSecurityOrigin& origin() const { return m_origin; }
62 private:
63 WebVector<WebSpeechGrammar> m_grammars;
64 WebString m_language;
65 WebString m_serviceURI;
66 bool m_continuous;
67 bool m_interimResults;
68 unsigned long m_maxAlternatives;
69 WebMediaStreamTrack m_audioTrack;
70 WebSecurityOrigin m_origin;
73 } // namespace blink
75 #endif // WebSpeechRecognitionParams_h