| Index: Source/modules/speech/SpeechSynthesisUtterance.h
|
| diff --git a/Source/modules/speech/SpeechSynthesisUtterance.h b/Source/modules/speech/SpeechSynthesisUtterance.h
|
| index c1eb9817ae092b9fe6c0c145c866b4ed48edf6d7..7411e160636d8f265c269c369009c58abca65046 100644
|
| --- a/Source/modules/speech/SpeechSynthesisUtterance.h
|
| +++ b/Source/modules/speech/SpeechSynthesisUtterance.h
|
| @@ -32,7 +32,6 @@
|
| #include "modules/speech/SpeechSynthesisVoice.h"
|
| #include "platform/heap/Handle.h"
|
| #include "platform/speech/PlatformSpeechSynthesisUtterance.h"
|
| -#include "wtf/PassRefPtr.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -81,11 +80,12 @@ public:
|
|
|
| private:
|
| SpeechSynthesisUtterance(ExecutionContext*, const String&);
|
| - Member<PlatformSpeechSynthesisUtterance> m_platformUtterance;
|
| - Member<SpeechSynthesisVoice> m_voice;
|
|
|
| // EventTarget
|
| virtual const AtomicString& interfaceName() const OVERRIDE;
|
| +
|
| + Member<PlatformSpeechSynthesisUtterance> m_platformUtterance;
|
| + Member<SpeechSynthesisVoice> m_voice;
|
| };
|
|
|
| } // namespace WebCore
|
|
|