| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 #include "core/dom/ContextLifecycleObserver.h" | 29 #include "core/dom/ContextLifecycleObserver.h" |
| 30 #include "modules/EventTargetModules.h" | 30 #include "modules/EventTargetModules.h" |
| 31 #include "modules/speech/SpeechSynthesisVoice.h" | 31 #include "modules/speech/SpeechSynthesisVoice.h" |
| 32 #include "platform/heap/Handle.h" | 32 #include "platform/heap/Handle.h" |
| 33 #include "platform/speech/PlatformSpeechSynthesisUtterance.h" | 33 #include "platform/speech/PlatformSpeechSynthesisUtterance.h" |
| 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 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollected<S
peechSynthesisUtterance>); | 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 virtual ~SpeechSynthesisUtterance(); |
| 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 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 // EventTarget | 84 // EventTarget |
| 85 virtual const AtomicString& interfaceName() const override; | 85 virtual 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 |