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

Side by Side Diff: Source/modules/speech/SpeechRecognition.cpp

Issue 884973003: Extend PlatformSpeechSynthesizerMock with an utterance queue. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: minor test tidying Created 5 years, 10 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 void SpeechRecognition::start(ExceptionState& exceptionState) 48 void SpeechRecognition::start(ExceptionState& exceptionState)
49 { 49 {
50 ASSERT(m_controller); 50 ASSERT(m_controller);
51 if (m_started) { 51 if (m_started) {
52 exceptionState.throwDOMException(InvalidStateError, "recognition has alr eady started."); 52 exceptionState.throwDOMException(InvalidStateError, "recognition has alr eady started.");
53 return; 53 return;
54 } 54 }
55 55
56 m_finalResults.clear(); 56 m_finalResults.clear();
57 m_controller->start(this, m_grammars.get(), m_lang, m_continuous, m_interimR esults, m_maxAlternatives, m_audioTrack); 57 m_controller->start(this, m_grammars, m_lang, m_continuous, m_interimResults , m_maxAlternatives, m_audioTrack);
58 m_started = true; 58 m_started = true;
59 } 59 }
60 60
61 void SpeechRecognition::stopFunction() 61 void SpeechRecognition::stopFunction()
62 { 62 {
63 ASSERT(m_controller); 63 ASSERT(m_controller);
64 if (m_started && !m_stopping) { 64 if (m_started && !m_stopping) {
65 m_stopping = true; 65 m_stopping = true;
66 m_controller->stop(this); 66 m_controller->stop(this);
67 } 67 }
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 visitor->trace(m_audioTrack); 199 visitor->trace(m_audioTrack);
200 #if ENABLE(OILPAN) 200 #if ENABLE(OILPAN)
201 visitor->trace(m_controller); 201 visitor->trace(m_controller);
202 #endif 202 #endif
203 visitor->trace(m_finalResults); 203 visitor->trace(m_finalResults);
204 RefCountedGarbageCollectedEventTargetWithInlineData<SpeechRecognition>::trac e(visitor); 204 RefCountedGarbageCollectedEventTargetWithInlineData<SpeechRecognition>::trac e(visitor);
205 ActiveDOMObject::trace(visitor); 205 ActiveDOMObject::trace(visitor);
206 } 206 }
207 207
208 } // namespace blink 208 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/speech/SpeechGrammarList.cpp ('k') | Source/modules/speech/SpeechRecognitionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698