HomeSort by relevance Sort by last modified time
    Searched refs:PlatformSpeechSynthesizerMock (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
PlatformSpeechSynthesizerMock.h 35 class PlatformSpeechSynthesizerMock FINAL : public PlatformSpeechSynthesizer {
37 static PlatformSpeechSynthesizerMock* create(PlatformSpeechSynthesizerClient*);
39 virtual ~PlatformSpeechSynthesizerMock();
48 explicit PlatformSpeechSynthesizerMock(PlatformSpeechSynthesizerClient*);
50 void speakingFinished(Timer<PlatformSpeechSynthesizerMock>*);
51 void speakingErrorOccurred(Timer<PlatformSpeechSynthesizerMock>*);
53 Timer<PlatformSpeechSynthesizerMock> m_speakingFinishedTimer;
54 Timer<PlatformSpeechSynthesizerMock> m_speakingErrorOccurredTimer;
PlatformSpeechSynthesizerMock.cpp 28 #include "modules/speech/testing/PlatformSpeechSynthesizerMock.h"
34 PlatformSpeechSynthesizerMock* PlatformSpeechSynthesizerMock::create(PlatformSpeechSynthesizerClient* client)
36 PlatformSpeechSynthesizerMock* synthesizer = new PlatformSpeechSynthesizerMock(client);
42 PlatformSpeechSynthesizerMock::PlatformSpeechSynthesizerMock(PlatformSpeechSynthesizerClient* client)
44 , m_speakingFinishedTimer(this, &PlatformSpeechSynthesizerMock::speakingFinished)
45 , m_speakingErrorOccurredTimer(this, &PlatformSpeechSynthesizerMock::speakingErrorOccurred)
49 PlatformSpeechSynthesizerMock::~PlatformSpeechSynthesizerMock(
    [all...]
InternalsSpeechSynthesis.cpp 38 #include "modules/speech/testing/PlatformSpeechSynthesizerMock.h"
50 synthesis->setPlatformSynthesizer(PlatformSpeechSynthesizerMock::create(synthesis));

Completed in 103 milliseconds