| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Apple Inc. All rights reserved. | 2 * Copyright (C) 2013 Apple 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class SpeechSynthesisUtterance final : public RefCountedGarbageCollectedEventTar
getWithInlineData<SpeechSynthesisUtterance>, public PlatformSpeechSynthesisUtter
anceClient, public ContextLifecycleObserver { | 37 class SpeechSynthesisUtterance final : public RefCountedGarbageCollectedEventTar
getWithInlineData<SpeechSynthesisUtterance>, public PlatformSpeechSynthesisUtter
anceClient, public ContextLifecycleObserver { |
| 38 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(SpeechSynthesisUtterance); | 38 REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(SpeechSynthesisUtterance); |
| 39 DEFINE_WRAPPERTYPEINFO(); | 39 DEFINE_WRAPPERTYPEINFO(); |
| 40 USING_GARBAGE_COLLECTED_MIXIN(SpeechSynthesisUtterance); | 40 USING_GARBAGE_COLLECTED_MIXIN(SpeechSynthesisUtterance); |
| 41 public: | 41 public: |
| 42 static SpeechSynthesisUtterance* create(ExecutionContext*, const String&); | 42 static SpeechSynthesisUtterance* create(ExecutionContext*, const String&); |
| 43 | 43 |
| 44 virtual ~SpeechSynthesisUtterance(); | 44 ~SpeechSynthesisUtterance() override; |
| 45 | 45 |
| 46 const String& text() const { return m_platformUtterance->text(); } | 46 const String& text() const { return m_platformUtterance->text(); } |
| 47 void setText(const String& text) { m_platformUtterance->setText(text); } | 47 void setText(const String& text) { m_platformUtterance->setText(text); } |
| 48 | 48 |
| 49 const String& lang() const { return m_platformUtterance->lang(); } | 49 const String& lang() const { return m_platformUtterance->lang(); } |
| 50 void setLang(const String& lang) { m_platformUtterance->setLang(lang); } | 50 void setLang(const String& lang) { m_platformUtterance->setLang(lang); } |
| 51 | 51 |
| 52 SpeechSynthesisVoice* voice() const; | 52 SpeechSynthesisVoice* voice() const; |
| 53 void setVoice(SpeechSynthesisVoice*); | 53 void setVoice(SpeechSynthesisVoice*); |
| 54 | 54 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 65 void setStartTime(double startTime) { m_platformUtterance->setStartTime(star
tTime); } | 65 void setStartTime(double startTime) { m_platformUtterance->setStartTime(star
tTime); } |
| 66 | 66 |
| 67 DEFINE_ATTRIBUTE_EVENT_LISTENER(start); | 67 DEFINE_ATTRIBUTE_EVENT_LISTENER(start); |
| 68 DEFINE_ATTRIBUTE_EVENT_LISTENER(end); | 68 DEFINE_ATTRIBUTE_EVENT_LISTENER(end); |
| 69 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); | 69 DEFINE_ATTRIBUTE_EVENT_LISTENER(error); |
| 70 DEFINE_ATTRIBUTE_EVENT_LISTENER(pause); | 70 DEFINE_ATTRIBUTE_EVENT_LISTENER(pause); |
| 71 DEFINE_ATTRIBUTE_EVENT_LISTENER(resume); | 71 DEFINE_ATTRIBUTE_EVENT_LISTENER(resume); |
| 72 DEFINE_ATTRIBUTE_EVENT_LISTENER(mark); | 72 DEFINE_ATTRIBUTE_EVENT_LISTENER(mark); |
| 73 DEFINE_ATTRIBUTE_EVENT_LISTENER(boundary); | 73 DEFINE_ATTRIBUTE_EVENT_LISTENER(boundary); |
| 74 | 74 |
| 75 virtual ExecutionContext* executionContext() const override; | 75 ExecutionContext* executionContext() const override; |
| 76 | 76 |
| 77 PlatformSpeechSynthesisUtterance* platformUtterance() const { return m_platf
ormUtterance; } | 77 PlatformSpeechSynthesisUtterance* platformUtterance() const { return m_platf
ormUtterance; } |
| 78 | 78 |
| 79 DECLARE_VIRTUAL_TRACE(); | 79 DECLARE_VIRTUAL_TRACE(); |
| 80 | 80 |
| 81 private: | 81 private: |
| 82 SpeechSynthesisUtterance(ExecutionContext*, const String&); | 82 SpeechSynthesisUtterance(ExecutionContext*, const String&); |
| 83 | 83 |
| 84 // EventTarget | 84 // EventTarget |
| 85 virtual const AtomicString& interfaceName() const override; | 85 const AtomicString& interfaceName() const override; |
| 86 | 86 |
| 87 Member<PlatformSpeechSynthesisUtterance> m_platformUtterance; | 87 Member<PlatformSpeechSynthesisUtterance> m_platformUtterance; |
| 88 Member<SpeechSynthesisVoice> m_voice; | 88 Member<SpeechSynthesisVoice> m_voice; |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace blink | 91 } // namespace blink |
| 92 | 92 |
| 93 #endif // SpeechSynthesisUtterance_h | 93 #endif // SpeechSynthesisUtterance_h |
| OLD | NEW |