#ifndef SpeechSynthesisUtterance_h
#define SpeechSynthesisUtterance_h
#include "bindings/v8/ScriptWrappable.h"
#include "core/dom/ContextLifecycleObserver.h"
#include "core/events/EventTarget.h"
#include "heap/Handle.h"
#include "modules/speech/SpeechSynthesisVoice.h"
#include "platform/speech/PlatformSpeechSynthesisUtterance.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
namespace WebCore {
class SpeechSynthesisUtterance FINAL : public RefCountedWillBeRefCountedGarbageCollected<SpeechSynthesisUtterance>, public PlatformSpeechSynthesisUtteranceClient, public ScriptWrappable, public ContextLifecycleObserver, public EventTargetWithInlineData {
DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<SpeechSynthesisUtterance>);
public:
static PassRefPtrWillBeRawPtr<SpeechSynthesisUtterance> create(ExecutionContext*, const String&);
virtual ~SpeechSynthesisUtterance();
const String& text() const { return m_platformUtterance->text(); }
void setText(const String& text) { m_platformUtterance->setText(text); }
const String& lang() const { return m_platformUtterance->lang(); }
void setLang(const String& lang) { m_platformUtterance->setLang(lang); }
SpeechSynthesisVoice* voice() const;
void setVoice(SpeechSynthesisVoice*);
float volume() const { return m_platformUtterance->volume(); }
void setVolume(float volume) { m_platformUtterance->setVolume(volume); }
float rate() const { return m_platformUtterance->rate(); }
void setRate(float rate) { m_platformUtterance->setRate(rate); }
float pitch() const { return m_platformUtterance->pitch(); }
void setPitch(float pitch) { m_platformUtterance->setPitch(pitch); }
double startTime() const { return m_platformUtterance->startTime(); }
void setStartTime(double startTime) { m_platformUtterance->setStartTime(startTime); }
DEFINE_ATTRIBUTE_EVENT_LISTENER(start);
DEFINE_ATTRIBUTE_EVENT_LISTENER(end);
DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
DEFINE_ATTRIBUTE_EVENT_LISTENER(pause);
DEFINE_ATTRIBUTE_EVENT_LISTENER(resume);
DEFINE_ATTRIBUTE_EVENT_LISTENER(mark);
DEFINE_ATTRIBUTE_EVENT_LISTENER(boundary);
virtual ExecutionContext* executionContext() const OVERRIDE;
PlatformSpeechSynthesisUtterance* platformUtterance() const { return m_platformUtterance.get(); }
void trace(Visitor*);
private:
SpeechSynthesisUtterance(ExecutionContext*, const String&);
RefPtr<PlatformSpeechSynthesisUtterance> m_platformUtterance;
RefPtrWillBeMember<SpeechSynthesisVoice> m_voice;
virtual const AtomicString& interfaceName() const OVERRIDE;
};
}
#endif